diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..fc480dc --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,23 @@ +import React from "react"; +import I404Png from "@/images/404.png"; +import Image from "next/image"; +import ButtonPrimary from "@/shared/ButtonPrimary"; + +const Page404 = () => ( +
+
+ {/* HEADER */} +
+ not-found + + {`THE PAGE YOU WERE LOOKING FOR DOESN'T EXIST.`}{" "} + +
+ Return Home Page +
+
+
+
+); + +export default Page404;