Skip to content

Commit

Permalink
Fix bad layout on 404
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Apr 28, 2020
1 parent 2ac882d commit 13dbc06
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/pages/404.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import React from 'react'
import React from "react";

import Layout from '../components/layout'
import SEO from '../components/seo'
import SEO from "../components/seo";

const NotFoundPage = () => (
<Layout>
<div>
<SEO title="404: Not found" />
<h1>NOT FOUND</h1>
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
</Layout>
)
</div>
);

export default NotFoundPage
export default NotFoundPage;

0 comments on commit 13dbc06

Please sign in to comment.