({ children })
| 12 | }; |
| 13 | |
| 14 | export 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected