weddingsite/pages/404.js

15 lines
287 B
JavaScript
Raw Permalink Normal View History

2021-06-04 00:58:40 +00:00
import Head from 'next/head';
export default function FourOhFourPage() {
return (
<>
<Head>
<title>404 - Page not found</title>
</Head>
<h1>Sorry page not found!</h1>
<p>404.</p>
<p>You just hit a route that doesn't exist.</p>
2021-06-04 00:58:40 +00:00
</>
);
}