From e90034078b85db276b45713dc926dae52dccd4a6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 26 Jan 2026 14:42:46 +0000 Subject: [PATCH 1/2] Initial plan From b523b773c864b44f57da0794f005e058b34a772f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 26 Jan 2026 14:46:48 +0000 Subject: [PATCH 2/2] Fix Next.js build error by adding HTML structure to root layout Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- apps/docs/app/layout.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/docs/app/layout.tsx b/apps/docs/app/layout.tsx index 7070de3c7..f60456680 100644 --- a/apps/docs/app/layout.tsx +++ b/apps/docs/app/layout.tsx @@ -18,5 +18,9 @@ export const metadata: Metadata = { export default function RootLayout({ children }: { children: ReactNode }) { // Root layout is only used for redirects with middleware // The actual layout is in [lang]/layout.tsx - return children; + return ( + + {children} + + ); }