MCPcopy
hub / github.com/JCodesMore/ai-website-cloner-template / RootLayout

Function RootLayout

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

Source from the content-addressed store, hash-verified

18};
19
20export default function RootLayout({
21 children,
22}: Readonly<{
23 children: React.ReactNode;
24}>) {
25 return (
26 <html
27 lang="en"
28 className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
29 >
30 <body className="min-h-full flex flex-col">{children}</body>
31 </html>
32 );
33}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected