From 0da7fd15b2d989ea98aef50c9b7c52abd9417489 Mon Sep 17 00:00:00 2001 From: Mannu Date: Sun, 10 May 2026 04:45:08 +0530 Subject: [PATCH] fix: root redirects to login --- src/app/page.tsx | 68 +++--------------------------------------------- 1 file changed, 4 insertions(+), 64 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3f36f7c..c3c853f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,65 +1,5 @@ -import Image from "next/image"; +import NextResponse from "next/server"; -export default function Home() { - return ( -
-
- Next.js logo -
-

- To get started, edit the page.tsx file. -

-

- Looking for a starting point or more instructions? Head over to{" "} - - Templates - {" "} - or the{" "} - - Learning - {" "} - center. -

-
-
- - Vercel logomark - Deploy Now - - - Documentation - -
-
-
- ); -} +export async function GET() { + return NextResponse.redirect(new URL("/login", "https://tia.manohargupta.com")); +} \ No newline at end of file