diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 00000000..eb0aea84 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,15 @@ +import Link from "next/link"; + +export default async function NotFound() { + return ( +
+

404

+

+ Page Not Found +

+

+ Oops! The page you're looking for doesn't exist. +

+
+ ); +}