import { NextPage } from 'next'; import Head from 'next/head'; const NotFound: NextPage = () => { return ( <> 404 Page Not Found

404: Not Found

Sorry, the page you are looking for does not exist.

); }; export default NotFound;