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 { 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>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue