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

import * as React from "react";
import { Link } from "gatsby";
import { Section, SectionTitle } from "../components/Layout";
import Seo from "../components/seo";
const NotFoundPage = () => (
<>
<Seo title="404: Not found" />
<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>
</>
);
export default NotFoundPage;