From a180fcc56f546afd728accf5ca7bf872c5feeaf5 Mon Sep 17 00:00:00 2001 From: James Pine Date: Mon, 16 Mar 2026 04:06:38 -0700 Subject: [PATCH] redirect root to /docs --- docs/app/(home)/page.tsx | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/docs/app/(home)/page.tsx b/docs/app/(home)/page.tsx index c936084d..4393163a 100644 --- a/docs/app/(home)/page.tsx +++ b/docs/app/(home)/page.tsx @@ -1,16 +1,5 @@ -import Link from 'next/link'; +import { redirect } from 'next/navigation'; export default function HomePage() { - return ( -
-

Hello World

-

- You can open{' '} - - /docs - {' '} - and see the documentation. -

-
- ); + redirect('/docs'); }