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

23 lines
551 B
JavaScript
Raw Normal View History

2021-03-23 12:07:19 +00:00
import * as React from "react";
2021-03-28 16:49:30 +00:00
import { Link } from "gatsby";
2021-04-01 12:46:00 +00:00
import { Section, SectionTitle } from "../components/Layout";
2021-03-23 12:07:19 +00:00
import SEO from "../components/seo";
const NotFoundPage = () => (
2021-04-01 12:46:00 +00:00
<>
2021-03-23 12:07:19 +00:00
<SEO title="404: Not found" />
2021-03-28 16:49:30 +00:00
<Section className="bg-white text-center">
<div className="space-y-8 py-40">
<SectionTitle>404: Not Found</SectionTitle>
<Link to="/" className="inline-block text-primary text-xs">
back to homepage
</Link>
</div>
</Section>
2021-04-01 12:46:00 +00:00
</>
2021-03-23 12:07:19 +00:00
);
export default NotFoundPage;