import { m } from 'framer-motion'; import { Link as RouterLink } from 'react-router-dom'; // @mui import { styled } from '@mui/material/styles'; import { Box, Button, Typography, Container } from '@mui/material'; // components import Page from '../components/Page'; import { MotionContainer, varBounce } from '../components/animate'; // assets import { PageNotFoundIllustration } from '../assets'; // ---------------------------------------------------------------------- const RootStyle = styled('div')(({ theme }) => ({ display: 'flex', minHeight: '100%', alignItems: 'center', paddingTop: theme.spacing(15), paddingBottom: theme.spacing(10), })); // ---------------------------------------------------------------------- export default function Page404() { return ( Sorry, page not found! Sorry, we couldn’t find the page you’re looking for. Perhaps you’ve mistyped the URL? Be sure to check your spelling. ); }