Skip to content

Commit 371774c

Browse files
authored
Merge pull request #238 from objectstack-ai/copilot/restructure-website-docs-another-one
2 parents d8efa59 + b523b77 commit 371774c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

apps/docs/app/layout.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,9 @@ export const metadata: Metadata = {
1818
export default function RootLayout({ children }: { children: ReactNode }) {
1919
// Root layout is only used for redirects with middleware
2020
// The actual layout is in [lang]/layout.tsx
21-
return children;
21+
return (
22+
<html lang="en" suppressHydrationWarning>
23+
<body>{children}</body>
24+
</html>
25+
);
2226
}

0 commit comments

Comments
 (0)