diff --git a/client/src/app/not-found.js b/client/src/app/not-found.js new file mode 100644 index 0000000..82917e8 --- /dev/null +++ b/client/src/app/not-found.js @@ -0,0 +1,29 @@ +import Link from "next/link"; + +export default function Component() { + return ( +
+
+
+

+ Oops, page not found! +

+

+ The page you're looking for doesn't exist. Let's get you back on + track. +

+
+ + + Go to Homepage + + +
+
+
+ ); +}