import { NextPage } from 'next' import Container from '../components/Container' const NotFound: NextPage = () => { return (

Not Found

) } export default NotFound