"use client"; import { ThemeProvider as ThemeProviderPrimitive, type ThemeProviderProps, useTheme, } from "next-themes"; import { PropsWithChildren } from "react"; const STORAGE_KEY = "mode"; export const ThemeProvider = ({ children, ...props }: PropsWithChildren) => { return ( {children} ); }; export { useTheme };