Created the Access.jsx section

This commit is contained in:
Mathias Wagner 2023-07-08 19:34:46 +02:00
parent 507d3d8d0e
commit ebdb45f64c
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,20 @@
import {Grow, Stack, Typography} from "@mui/material";
import BaseImage from "@/common/assets/images/home/base.svg";
import AuthImage from "@/common/assets/images/home/auth.svg";
import DriveImage from "@/common/assets/images/home/drive.svg";
import GroupsImage from "@/common/assets/images/home/groups.svg";
import AccessItem from "@/pages/Home/sections/Access/components/AccessItem/index.js";
export const Access = () => (
<Stack direction="column" alignItems="center">
<Typography variant="h4" fontWeight={700} color="black">Erhalte Zugriff auf alles von
LicenseAPI</Typography>
<Stack direction="row" justifyContent="center" alignItems="center" sx={{mt: 5}} gap={8}>
<AccessItem title="Base" image={BaseImage}/>
<AccessItem title="Auth" image={AuthImage}/>
<AccessItem title="Drive" image={DriveImage}/>
<AccessItem title="Groups" image={GroupsImage}/>
</Stack>
</Stack>
)