diff --git a/site/pages/404.tsx b/site/pages/404.tsx new file mode 100644 index 00000000..a0f8a8b9 --- /dev/null +++ b/site/pages/404.tsx @@ -0,0 +1,24 @@ +import Layout from '@/components/Layout'; +import { NextSeo } from 'next-seo'; +import Link from 'next/link'; + +export default function () { + return ( + <> + + +
+
+

404 - Page not found

+

+ It seems like you are looking for a page that doesn't exist. +

+ + Go back to home + +
+
+
+ + ); +}