MCPcopy Create free account
hub / github.com/evolify/dumpfun / RootLayout

Function RootLayout

app/layout.tsx:60–75  ·  view source on GitHub ↗
({
  children,
}: Readonly<{
  children: React.ReactNode
}>)

Source from the content-addressed store, hash-verified

58}
59
60export default function RootLayout({
61 children,
62}: Readonly<{
63 children: React.ReactNode
64}>) {
65 return (
66 <html lang="en" className="dark">
67 <body
68 className={`${geistSans.variable} ${geistMono.variable} antialiased`}
69 >
70 {children}
71 </body>
72 <GoogleTagManager gtmId="GTM-WM9RJCSR" />
73 </html>
74 )
75}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected