2025-03-09 00:01:17 -05:00
|
|
|
import React from "react"
|
2025-03-09 18:45:12 -04:00
|
|
|
import { ThemeProvider } from "@/components/ThemeProvider"
|
2025-03-09 00:01:17 -05:00
|
|
|
import "./globals.css"
|
2025-03-09 18:45:12 -04:00
|
|
|
import "@fontsource-variable/bricolage-grotesque"
|
2025-03-09 00:01:17 -05:00
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
}: Readonly<{
|
|
|
|
children: React.ReactNode;
|
|
|
|
}>) {
|
|
|
|
return (
|
2025-03-09 18:45:12 -04:00
|
|
|
<html lang="en" suppressHydrationWarning>
|
2025-03-09 00:01:17 -05:00
|
|
|
<body className="antialiased">
|
2025-03-09 18:45:12 -04:00
|
|
|
<ThemeProvider
|
|
|
|
attribute="class"
|
|
|
|
defaultTheme="system"
|
|
|
|
enableSystem
|
|
|
|
disableTransitionOnChange
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</ThemeProvider>
|
2025-03-09 00:01:17 -05:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
);
|
|
|
|
}
|