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'); }