From eb5987108e36136bc079873499f95567b9051029 Mon Sep 17 00:00:00 2001 From: Alberto Mac Date: Mon, 26 Aug 2024 18:52:46 +0100 Subject: revision, and minor fixes --- app/page.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 app/page.tsx (limited to 'app/page.tsx') diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..b903c5a --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,8 @@ +// app/page.tsx + +import { redirect } from 'next/navigation'; + +export default function Home() { + redirect('/login'); + return null; // Since the redirect is immediate, nothing will render here +} -- cgit v1.2.3-54-g00ecf