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 7be8c00 commit 79adc87Copy full SHA for 79adc87
apps/docs/app/(home)/layout.tsx
@@ -33,12 +33,10 @@ export default async function Layout({ children }: { children: ReactNode }) {
33
34
return (
35
<HomeLayout {...baseOptions}>
36
- <div className="overflow-hidden">
37
- <Navbar stars={stars} />
38
- <main className="flex min-h-screen flex-col font-manrope">
39
- {children}
40
- </main>
41
- </div>
+ <Navbar stars={stars} />
+ <main className="flex min-h-screen flex-col font-manrope">
+ {children}
+ </main>
42
</HomeLayout>
43
);
44
}
0 commit comments