18 lines
339 B
JavaScript
18 lines
339 B
JavaScript
"use client";
|
|
|
|
import { ThemeProvider } from "next-themes";
|
|
|
|
export function Providers({ children }) {
|
|
const isDark = window.location.pathname.includes("/panel");
|
|
|
|
return (
|
|
<ThemeProvider
|
|
attribute={isDark ? "class" : "data-"}
|
|
defaultTheme="system"
|
|
enableSystem
|
|
>
|
|
{children}
|
|
</ThemeProvider>
|
|
);
|
|
}
|