"use client"; import { ThemeProvider } from "next-themes"; export function Providers({ children }) { const isDark = window.location.pathname.includes("/panel"); return ( {children} ); }