"use client"; // Thin wrapper around next-themes so the root (server) layout can mount a theme // provider without pulling client-only code into the server module graph. Dark // is the locked default; the system preference is intentionally not consulted. import { ThemeProvider as NextThemesProvider } from "next-themes"; import type { ComponentProps } from "react"; export function ThemeProvider({ children, ...props }: ComponentProps) { return {children}; }