From 247d101747383f8c6ae8bbf186ff30dd39556968 Mon Sep 17 00:00:00 2001 From: Telkens Date: Thu, 29 Feb 2024 19:47:33 -0500 Subject: [PATCH] Add not-found page --- src/app/not-found.tsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/app/not-found.tsx diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..f6e9285 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,31 @@ +import { FC } from "react"; +import Image from "next/image"; +import Link from "next/link"; + +const NotFoundPage: FC = () => { + return ( +
+

+ La pagina que estas buscando no parece existir +

+
+

+ ERROR +

+ 404 +
+ + + +
+ ); +}; +export default NotFoundPage;