diff --git a/apps/roboshield/src/components/Hero/Hero.tsx b/apps/roboshield/src/components/Hero/Hero.tsx index d361f57db..4a4b7531a 100644 --- a/apps/roboshield/src/components/Hero/Hero.tsx +++ b/apps/roboshield/src/components/Hero/Hero.tsx @@ -1,9 +1,12 @@ -import { Box } from "@mui/material"; -import Button from "@mui/material/Button"; -import Typography from "@mui/material/Typography"; +import { Section } from "@commons-ui/core"; +import { RichTypography } from "@commons-ui/next"; +import { Box, Button, Typography } from "@mui/material"; import React from "react"; import ReactRotatingText from "react-rotating-text"; +import SmartToyOutlinedIcon from "@mui/icons-material/SmartToyOutlined"; +import BotIcon from "@/roboshield/assets/icons/Type=robot, Size=24, Color=CurrentColor.svg"; + interface props { scrolRef: React.RefObject; } @@ -14,54 +17,52 @@ const Hero = ({ scrolRef }: props) => { component="section" sx={{ textAlign: "center", - height: "600px", - backgroundColor: "#0C1A81", - backgroundImage: "url(./bg-shape-8.svg)", + backgroundColor: "primary.dark", + backgroundImage: "url('/bg-shape-8.svg')", backgroundSize: "cover", - paddingTop: "170px", px: { xs: 2.5, sm: 0 }, + py: { xs: 8, md: 13 }, }} > - +
- HOW IT WORKS + CONTROL YOUR DATA - - - Guard your{" "} + Guard Your { cursor={false} eraseMode="overwrite" /> - {" "} - against AI Bots + + Against AI Bots - - Generate a robots.txt file tailored to the platform you use to publish - your content online and blocks AI bots - + {`Generate a robots.txt file tailored to the platform you use to publish your content online and blocks AI bots`} + - +
); };