import { Button, Typography } from '@mui/material'; import { Box } from '@mui/system'; import { useTranslation } from 'next-i18next'; import Image from 'next/image'; import { useRouter } from 'next/router'; import { PRODUCTS_PAGE } from '../../constants/pages'; const Hero: React.FC = () => { const { t } = useTranslation('home'); const router = useRouter(); return ( <> {t('home:mainTitle1')} {t('home:mainTitle2')} {t('home:description')} profile ); }; export default Hero;