diff --git a/apps/docs/app/page.tsx b/apps/docs/app/page.tsx new file mode 100644 index 00000000..a758c71a --- /dev/null +++ b/apps/docs/app/page.tsx @@ -0,0 +1,6 @@ +import { redirect } from "next/navigation"; + +export default function HomePage() { + // Redirect to the docs core page when accessing the root + redirect("/docs/core"); +}