import { Button, Typography } from '@mui/material'; import { useNavigate } from 'react-router'; import { ReactComponent as LogoIcon } from 'assets/icons/logoBg.svg'; import { useStyles } from './NotFound.styles'; import { GO_BACK } from 'constants/navigate'; const NotFound = () => { const navigate = useNavigate(); const { classes: styles } = useStyles(); const onClickHome = () => { navigate('/'); }; const onClickBack = () => { navigate(GO_BACK); }; return (