From b7241a38330b522d802eed97dab1cc17a5ab47b4 Mon Sep 17 00:00:00 2001 From: basstian-ai Date: Tue, 20 May 2025 17:27:02 +0200 Subject: [PATCH] Create page.tsx --- app/_not-found/page.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 app/_not-found/page.tsx diff --git a/app/_not-found/page.tsx b/app/_not-found/page.tsx new file mode 100644 index 000000000..a6006221a --- /dev/null +++ b/app/_not-found/page.tsx @@ -0,0 +1,9 @@ +// app/_not-found/page.tsx +export default function InternalNotFound() { + return ( +
+

404

+

Page not found.

+
+ ) +}