MCPcopy Create free account
hub / github.com/CodeWithHarry/Sigma-Web-Dev-Course / RootLayout

Function RootLayout

Video 131/app/layout.js:14–28  ·  view source on GitHub ↗
({ children })

Source from the content-addressed store, hash-verified

12};
13
14export default function RootLayout({ children }) {
15 return (
16 <html lang="en">
17 <body className="bg-[#000000] bg-[radial-gradient(#ffffff33_1px,#00091d_1px)] bg-[size:20px_20px] text-white">
18 <SessionWrapper>
19 <Navbar />
20 <div className=" min-h-screen bg-[#000000] bg-[radial-gradient(#ffffff33_1px,#00091d_1px)] bg-[size:20px_20px] text-white">
21 {children}
22 </div>
23 <Footer />
24 </SessionWrapper>
25 </body>
26 </html>
27 );
28}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected