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 { Nav } from './client-nav';
import './globals.css'; import './globals.css';
@ -10,10 +10,10 @@ export default function RootLayout({ children }: { children: ReactNode }) {
<html lang="en"> <html lang="en">
<body> <body>
<Nav /> <Nav />
<ThemeProvider attribute="class" defaultTheme="system" enableSystem> {/* <ThemeProvider attribute="class" defaultTheme="system" enableSystem> */}
{/* <ModeToggle /> */} {/* <ModeToggle /> */}
{children} {children}
</ThemeProvider> {/* </ThemeProvider> */}
</body> </body>
</html> </html>
) )