404.js 292 B

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