blob: 22e35f8d44d7c54da15f15d236ee72d9f77ca05e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react'
import Layout from '../components/layout'
const NotFoundPage = () => (
<Layout>
<h1>NOT FOUND</h1>
<p>You just hit a route that doesn't exist... the sadness.</p>
</Layout>
)
export default NotFoundPage
|