import { Helmet } from 'react-helmet-async'; import { Link as RouterLink } from 'react-router-dom'; // @mui import { styled } from '@mui/material/styles'; import { Button, Typography, Container, Box } from '@mui/material'; // ---------------------------------------------------------------------- const StyledContent = styled('div')(({ theme }) => ({ maxWidth: 480, margin: 'auto', minHeight: '100vh', display: 'flex', justifyContent: 'center', flexDirection: 'column', padding: theme.spacing(12, 0), })); // ---------------------------------------------------------------------- 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. ); }