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
All checks were successful
GBCI / build (push) Successful in 2m56s
This commit is contained in:
parent
4e57232f08
commit
c2352564be
1 changed files with 3 additions and 3 deletions
|
@ -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>
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue