MCPcopy Create free account
hub / github.com/amaancoderx/skillui / RootLayout

Function RootLayout

app/layout.tsx:24–38  ·  view source on GitHub ↗
({
  children,
}: {
  children: React.ReactNode
})

Source from the content-addressed store, hash-verified

22}
23
24export default function RootLayout({
25 children,
26}: {
27 children: React.ReactNode
28}) {
29 return (
30 <html lang="en" className={`${inter.variable} ${jetbrains.variable} dark`} suppressHydrationWarning>
31 <body className="bg-white dark:bg-black text-black dark:text-white font-sans antialiased transition-colors duration-200">
32 <ThemeProvider>
33 {children}
34 </ThemeProvider>
35 </body>
36 </html>
37 )
38}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected