aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pages/404.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/404.tsx')
-rw-r--r--src/pages/404.tsx23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/pages/404.tsx b/src/pages/404.tsx
deleted file mode 100644
index 782a349..0000000
--- a/src/pages/404.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-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&apos;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";