blob: 782a349dcb2b3d5fefc5cd3727216f7eb84b4095 (
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
|
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! We couldn't find what you were looking for
<span role="img" aria-label="Pensive emoji">
😔
</span>
</BlockBody>
<BlockLink href="/" aria-label="Return to the front page">
Home
</BlockLink>
</Layout>
);
};
export default NotFoundPage;
export { Head } from "../components/SEO";
|