aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pages/404.tsx
blob: d8d27cbabea61f2a0308ad15b2b6b509ac841115 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import React from "react";
import { BlockLink, Layout } from "../components";
import { BlockBody, BlockHeader } from "../styles";
import "../styles/main.css";

const NotFoundPage = (): React.ReactElement => {
  return (
    <Layout>
      <BlockHeader>Not found</BlockHeader>
      <BlockBody>
        Sorry{" "}
        <span role="img" aria-label="Pensive emoji">
          😔
        </span>{" "}
        we couldn&apos;t find what you were looking for.
      </BlockBody>
      <BlockLink href="/" aria-label="Return to the front page">
        Home
      </BlockLink>
    </Layout>
  );
};

export default NotFoundPage;
export { Head } from "../components/SEO";