We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b70311 commit b9548d0Copy full SHA for b9548d0
packages/site/app/page.tsx
@@ -0,0 +1,11 @@
1
+import { redirect } from 'next/navigation';
2
+
3
+/**
4
+ * Root page - redirects are handled by proxy.ts middleware
5
+ * This page should never actually render as the middleware intercepts and redirects
6
+ * But Next.js requires a page component for the route to be recognized
7
+ */
8
+export default function RootPage() {
9
+ // Fallback redirect if middleware didn't handle it
10
+ redirect('/en/docs');
11
+}
0 commit comments