import * as React from "react" import { graphql } from "gatsby" import Layout from "../components/layout" import Seo from "../components/seo" const NotFoundPage = ({ data, location }) => { const siteTitle = data.site.siteMetadata.title return (

404: Not Found

You just hit a route that doesn't exist... the sadness.

) } export const Head = () => export default NotFoundPage export const pageQuery = graphql` query { site { siteMetadata { title } } } `