From 38aa62fcef38ed8acb88959a42f73f0aae1ecec6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Demenech?= Date: Wed, 9 Aug 2023 16:57:01 -0300 Subject: [PATCH] [404,seo][xs]: custom 404 page with noindex,nofollow meta tag --- site/pages/404.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 site/pages/404.tsx 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 + +
+
+
+ + ); +}