aboutsummaryrefslogtreecommitdiffstats
path: root/app/page.tsx
diff options
context:
space:
mode:
authorAlberto Mac <alberto.duarte.delgado@pwc.com>2024-08-26 18:52:46 +0100
committerAlberto Mac <alberto.duarte.delgado@pwc.com>2024-08-26 18:52:46 +0100
commiteb5987108e36136bc079873499f95567b9051029 (patch)
treedee934f80aaeb891b31eb90e4e7bc1dca647b112 /app/page.tsx
parent72cf36e033ba794db7982befa45f035b62fa6cd2 (diff)
revision, and minor fixes
Diffstat (limited to 'app/page.tsx')
-rw-r--r--app/page.tsx8
1 files changed, 8 insertions, 0 deletions
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
+}