From e55b806aa4e5f116b6b616287e3813f5f32d95bb Mon Sep 17 00:00:00 2001 From: paolosantarsiero Date: Tue, 31 Dec 2024 11:50:44 +0100 Subject: [PATCH] fix: build --- app/_not-found/page.tsx | 5 ----- app/not-found.tsx | 11 +++++++++++ 2 files changed, 11 insertions(+), 5 deletions(-) delete mode 100644 app/_not-found/page.tsx create mode 100644 app/not-found.tsx 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