This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/website/src/pages/404.js

15 lines
340 B
JavaScript
Raw Normal View History

2021-03-23 12:07:19 +00:00
import * as React from "react";
import Layout from "../components/Layout/Layout";
import SEO from "../components/seo";
const NotFoundPage = () => (
<Layout>
<SEO title="404: Not found" />
<h1>404: Not Found</h1>
<p>You just hit a route that doesn&#39;t exist... the sadness.</p>
</Layout>
);
export default NotFoundPage;