15 lines
340 B
JavaScript
15 lines
340 B
JavaScript
import * as React from "react";
|
|
|
|
import Layout from "../components/Layout/Layout";
|
|
import SEO from "../components/seo";
|
|
|
|
const NotFoundPage = () => (
|
|
<Layout>
|
|
<SEO title="404: Not found" />
|
|
<h1>404: Not Found</h1>
|
|
<p>You just hit a route that doesn't exist... the sadness.</p>
|
|
</Layout>
|
|
);
|
|
|
|
export default NotFoundPage;
|