diff --git a/app/_not-found/page.tsx b/app/_not-found/page.tsx deleted file mode 100644 index 2cfe638a6..000000000 --- a/app/_not-found/page.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { notFound } from 'next/navigation'; - -export default function NotFoundCatchAll() { - notFound(); -} diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 000000000..c3632361e --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,11 @@ +import Link from 'next/link' + +export default function NotFound() { + return ( +
+

Not Found

+

Could not find requested resource

+ Return Home +
+ ) +} \ No newline at end of file