enzostvs HF staff commited on
Commit
9db21d1
1 Parent(s): 7d04c6c

disable theme provider

Browse files
Files changed (1) hide show
  1. app/layout.tsx +4 -4
app/layout.tsx CHANGED
@@ -21,14 +21,14 @@ export default function RootLayout({
21
  <body
22
  className={`${inter.variable} ${montserrat.variable} bg-grid-small-white/5 font-sans`}
23
  >
24
- <ThemeProvider
25
  attribute="class"
26
  defaultTheme="system"
27
  enableSystem
28
  disableTransitionOnChange
29
- >
30
- {children}
31
- </ThemeProvider>
32
  </body>
33
  </html>
34
  </>
 
21
  <body
22
  className={`${inter.variable} ${montserrat.variable} bg-grid-small-white/5 font-sans`}
23
  >
24
+ {/* <ThemeProvider
25
  attribute="class"
26
  defaultTheme="system"
27
  enableSystem
28
  disableTransitionOnChange
29
+ > */}
30
+ {children}
31
+ {/* </ThemeProvider> */}
32
  </body>
33
  </html>
34
  </>