From c2352564bef7d74281850084ac7abb64d820a9ca Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Sun, 27 Apr 2025 15:29:53 -0300 Subject: [PATCH] feat: update Next.js configuration, add 'use client' directive to multiple components, and create new pages for music, editor, and videos --- app/layout.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index bd38c99..08bb8ab 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -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 }) {