style: clean up the root layout code

This commit is contained in:
Dorian Niemiec 2024-11-25 06:24:01 +01:00
parent 61c9c4313d
commit c6979c7c33

View file

@ -5,27 +5,6 @@ export default function RootLayout({ children }) {
return ( return (
<div className="flex flex-col min-h-screen"> <div className="flex flex-col min-h-screen">
<Header /> <Header />
{/*<Header
docLinks={[
{
href: "/",
target: "_self",
label: "Home"
},
{
href: "/docs",
target: "_self",
label: "Docs",
sub: true
},
{
href: "/blog",
target: "_self",
label: "Blog",
sub: true
}
]}
/>*/}
<div className="flex-grow flex-1 overflow-x-hidden">{children}</div> <div className="flex-grow flex-1 overflow-x-hidden">{children}</div>
<Footer /> <Footer />
</div> </div>