"use client"; import { type ReactNode } from "react"; import { usePathname } from "next/navigation"; import { I18nProvider } from "@/lib/i18n"; import { ThemeProvider } from "@/lib/theme"; import { Sidebar } from "@/components/Sidebar"; export function ClientProviders({ children }: { children: ReactNode }) { const pathname = usePathname(); const isPortal = pathname === "/portal"; return ( {isPortal ? ( <>{children} ) : ( <>
{children}
)}
); }