diff --git a/src/pages/Home/sections/Header/Header.jsx b/src/pages/Home/sections/Header/Header.jsx new file mode 100644 index 0000000..bc2f8e8 --- /dev/null +++ b/src/pages/Home/sections/Header/Header.jsx @@ -0,0 +1,26 @@ +import {Box, List, Stack, Typography, useMediaQuery, useTheme} from "@mui/material"; +import CertificateImage from "@/common/assets/images/home/certificate.svg"; +import BulletItem from "@/pages/Home/sections/Header/components/BulletItem/index.js"; + +export const Header = () => { + const theme = useTheme(); + const isMobile = useMediaQuery(theme.breakpoints.down("lg")); + + return ( + + + Die Lizenzierung + Ihrer App war noch nie so einfach. + + + + + + + + + + {!isMobile && Certificate} + + ); +} \ No newline at end of file