// ** React Imports import { ReactNode } from 'react' // ** Next Import import Link from 'next/link' // ** MUI Components import Button from '@mui/material/Button' import { styled } from '@mui/material/styles' import Typography from '@mui/material/Typography' import Box, { BoxProps } from '@mui/material/Box' // ** Layout Import import BlankLayout from 'src/@core/layouts/BlankLayout' // ** Demo Imports import FooterIllustrations from 'src/views/pages/misc/FooterIllustrations' // ** Styled Components const BoxWrapper = styled(Box)(({ theme }) => ({ [theme.breakpoints.down('md')]: { width: '90vw' } })) const Img = styled('img')(({ theme }) => ({ marginTop: theme.spacing(15), marginBottom: theme.spacing(15), [theme.breakpoints.down('lg')]: { height: 450, marginTop: theme.spacing(10), marginBottom: theme.spacing(10) }, [theme.breakpoints.down('md')]: { height: 400 } })) const Error404 = () => { return ( 404 Page Not Found ⚠️ We couldn′t find the page you are looking for. error-illustration ) } Error404.getLayout = (page: ReactNode) => {page} export default Error404