Skip to content

Instantly share code, notes, and snippets.

@THEozmic
Last active January 29, 2019 22:34
Show Gist options
  • Save THEozmic/6a40f36621bf67850ad806ffbab4f793 to your computer and use it in GitHub Desktop.
Save THEozmic/6a40f36621bf67850ad806ffbab4f793 to your computer and use it in GitHub Desktop.
import React from 'react'
import Layout from '../components/layout'
import SEO from '../components/seo'
const NotFoundPage = () => (
<Layout>
<SEO title="404: Not found" />
<h1>NOT FOUND</h1>
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
</Layout>
)
export default NotFoundPage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment