UNPKG

@atooni/gatsby-theme-ziodoc

Version:

A Gatsby theme for ZIO micro sites

14 lines (10 loc) 274 B
import * as React from "react" import Seo from "../components/seo" const NotFoundPage = () => ( <> <Seo title="404: Not found" /> <h1>404: Not Found</h1> <p>You just hit a route that doesn&#39;t exist... the sadness.</p> </> ) export default NotFoundPage