From 36d97aecd1c88173a45d96f5c1925ea0d073a814 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Thu, 7 Nov 2024 18:14:58 +0100 Subject: [PATCH] feat: add custom 404 Not Found page --- app/not-found.jsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 app/not-found.jsx diff --git a/app/not-found.jsx b/app/not-found.jsx new file mode 100644 index 0000000..bda1814 --- /dev/null +++ b/app/not-found.jsx @@ -0,0 +1,27 @@ +import Footer from "@/components/Footer"; +import Header from "@/components/Header"; +import Link from "next/link"; + +function NotFound() { + return ( + <> +
+
+
+

+ 404 Page not Found +

+

+ Please return back to{" "} + + Home + +

+
+
+ + ); +} + +export default NotFound;