import React, { StatelessComponent } from "react"; import SEO from "../components/SEO"; const NotFoundPage: StatelessComponent<{}> = () => ( <>

NOT FOUND

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

); export default NotFoundPage;