feat: update Next.js configuration, add 'use client' directive to multiple components, and create new pages for music, editor, and videos
All checks were successful
GBCI / build (push) Successful in 2m56s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-04-27 15:29:53 -03:00
parent 4e57232f08
commit c2352564be

View file

@ -1,4 +1,4 @@
import { ThemeProvider } from "@/components/ui/theme-provider";
import { Nav } from './client-nav';
import './globals.css';
@ -10,10 +10,10 @@ export default function RootLayout({ children }: { children: ReactNode }) {
<html lang="en">
<body>
<Nav />
<ThemeProvider attribute="class" defaultTheme="system" enableSystem>
{/* <ThemeProvider attribute="class" defaultTheme="system" enableSystem> */}
{/* <ModeToggle /> */}
{children}
</ThemeProvider>
{/* </ThemeProvider> */}
</body>
</html>
)