Skip to content

Commit e491dee

Browse files
committed
add 404 page
1 parent 08a4f27 commit e491dee

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/pages/404.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import React from 'react'
2+
import Layout from '../components/layout'
3+
4+
const NotFoundPage = () => (
5+
<Layout>
6+
<h1>404: Not Found</h1>
7+
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
8+
</Layout>
9+
)
10+
11+
export default NotFoundPage

0 commit comments

Comments
 (0)