From b625c03597ffa56142da2b43907229e7c58c87e7 Mon Sep 17 00:00:00 2001 From: Massimo De Marchi Date: Thu, 14 Dec 2023 14:38:49 +0100 Subject: [PATCH] wip --- frontend/app/{_disable_not-found.tsx => not-found.tsx} | 0 frontend/app/page.tsx | 5 +++++ 2 files changed, 5 insertions(+) rename frontend/app/{_disable_not-found.tsx => not-found.tsx} (100%) create mode 100644 frontend/app/page.tsx diff --git a/frontend/app/_disable_not-found.tsx b/frontend/app/not-found.tsx similarity index 100% rename from frontend/app/_disable_not-found.tsx rename to frontend/app/not-found.tsx diff --git a/frontend/app/page.tsx b/frontend/app/page.tsx new file mode 100644 index 00000000..395551d3 --- /dev/null +++ b/frontend/app/page.tsx @@ -0,0 +1,5 @@ +import { notFound } from 'next/navigation'; + +export default function IndexPage() { + notFound(); +}