'use client'; import { m } from 'framer-motion'; // @mui import Button from '@mui/material/Button'; import Typography from '@mui/material/Typography'; // layouts import CompactLayout from 'src/layouts/compact'; // routes import { RouterLink } from 'src/routes/components'; // components import { MotionContainer, varBounce } from 'src/components/animate'; // assets import { PageNotFoundIllustration } from 'src/assets/illustrations'; // ---------------------------------------------------------------------- export default function NotFoundView() { 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. ); }