blob: 6288f0c91b55b2d74c408a2b41243333dd92cd93 (
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
|
import React from "react";
import { BlockLink, Layout } from "../components";
import { BlockBody, BlockHeader } from "../styles";
const NotFoundPage = (): React.ReactElement => {
return (
<Layout>
<BlockHeader>Not found</BlockHeader>
<BlockBody>
Sorry{" "}
<span role="img" aria-label="Pensive emoji">
😔
</span>{" "}
we couldn'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";
|