Add 404 page

This commit is contained in:
Sam Carlton 2021-09-11 14:52:56 -05:00
parent bdad499a00
commit 9f7773b31d

11
pages/404.js Normal file
View file

@ -0,0 +1,11 @@
import Layout from '@/components/layout/default.js'
function NotFound() {
return (
<Layout>
<div>Not Found</div>
</Layout>
)
}
export default NotFound