import Box from '@mui/material/Box'; import Button from '@mui/material/Button'; import Container from '@mui/material/Container'; import InputLabel from '@mui/material/InputLabel'; import Link from '@mui/material/Link'; import Stack from '@mui/material/Stack'; import TextField from '@mui/material/TextField'; import Typography from '@mui/material/Typography'; import visuallyHidden from '@mui/utils/visuallyHidden'; import { styled } from '@mui/material/styles'; const StyledBox = styled('div')(({ theme }) => ({ alignSelf: 'center', width: '100%', height: 400, marginTop: theme.spacing(8), borderRadius: (theme.vars || theme).shape.borderRadius, outline: '6px solid', outlineColor: 'hsla(220, 25%, 80%, 0.2)', border: '1px solid', borderColor: (theme.vars || theme).palette.grey[200], boxShadow: '0 0 12px 8px hsla(220, 25%, 80%, 0.2)', backgroundImage: `url(${import.meta.env.TEMPLATE_IMAGE_URL || 'https://mui.com'}/static/screenshots/material-ui/getting-started/templates/dashboard.jpg)`, backgroundSize: 'cover', [theme.breakpoints.up('sm')]: { marginTop: theme.spacing(10), height: 700, }, ...theme.applyStyles('dark', { boxShadow: '0 0 24px 12px hsla(210, 100%, 25%, 0.2)', backgroundImage: `url(${import.meta.env.TEMPLATE_IMAGE_URL || 'https://mui.com'}/static/screenshots/material-ui/getting-started/templates/dashboard-dark.jpg)`, outlineColor: 'hsla(220, 20%, 42%, 0.1)', borderColor: (theme.vars || theme).palette.grey[700], }), })); export default function Hero() { return ( ({ width: '100%', backgroundRepeat: 'no-repeat', backgroundImage: 'radial-gradient(ellipse 80% 50% at 50% -20%, hsl(210, 100%, 90%), transparent)', ...theme.applyStyles('dark', { backgroundImage: 'radial-gradient(ellipse 80% 50% at 50% -20%, hsl(210, 100%, 16%), transparent)', }), })} > Our latest  ({ fontSize: 'inherit', color: 'primary.main', ...theme.applyStyles('dark', { color: 'primary.light', }), })} > products Explore our cutting-edge dashboard, delivering high-quality solutions tailored to your needs. Elevate your experience with top-tier features and services. Email By clicking "Start now" you agree to our  Terms & Conditions . ); }