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;