This commit is contained in:
Mauro Balades
2024-08-24 23:53:18 +02:00
7 changed files with 52 additions and 18 deletions

View File

@@ -1,7 +1,8 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { ThemeProvider } from "@/components/theme-provider"
import { ThemeProvider } from "@/components/theme-provider";
import StyledComponentsRegistry from "@/lib/styled-components-registry";
const inter = Inter({ subsets: ["latin"] });
@@ -28,7 +29,7 @@ export default function RootLayout({
enableSystem
disableTransitionOnChange
>
{children}
<StyledComponentsRegistry>{children}</StyledComponentsRegistry>
</ThemeProvider>
</body>
</html>