From 93d43c845131fdb4565e6efd4f71fa36644fc47f Mon Sep 17 00:00:00 2001 From: tech Date: Wed, 4 Mar 2026 02:15:38 +0800 Subject: [PATCH] feat: redirect home page to download page --- app/page.tsx | 67 ++++------------------------------------------------ 1 file changed, 4 insertions(+), 63 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 295f8fd..9a9b515 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,65 +1,6 @@ -import Image from "next/image"; +// app/page.tsx +import { redirect } from 'next/navigation'; -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 default function HomePage() { + redirect('/download'); }