diff --git a/src/pages/Home/sections/Safety/Safety.jsx b/src/pages/Home/sections/Safety/Safety.jsx new file mode 100644 index 0000000..26992fd --- /dev/null +++ b/src/pages/Home/sections/Safety/Safety.jsx @@ -0,0 +1,26 @@ +import {List, Stack, Typography, useMediaQuery, useTheme} from "@mui/material"; +import SecureImage from "@/common/assets/images/home/secure.svg"; +import BulletItem from "@/pages/Home/sections/Header/components/BulletItem/index.js"; + +export const Safety = () => { + const theme = useTheme(); + const isMobile = useMediaQuery(theme.breakpoints.down("lg")); + + return ( + + {!isMobile && Secure} + + + Sicherheit + LicenseAPI legt hohen Wert auf die + Sicherheit Ihrer Daten + + + + + + + + + ) +} \ No newline at end of file