import { FunctionComponent } from 'react'; import { Box, Typography } from '@mui/material'; import BrokenImageIcon from '@mui/icons-material/BrokenImage'; import { PageContainer } from './components/page-container'; export const NotFound: FunctionComponent = () => { return ( Oooups...this is a 404 page. ); };