404.js 318 B

1234567891011121314
  1. import React from "react"
  2. import Layout from "../components/layout"
  3. import SEO from "../components/seo"
  4. const NotFoundPage = () => (
  5. <Layout>
  6. <SEO title="404: Not found" />
  7. <h1>NOT FOUND</h1>
  8. <p>You just hit a route that doesn&#39;t exist... the sadness.</p>
  9. </Layout>
  10. )
  11. export default NotFoundPage