'use client'; import { ThemeProvider as NextThemeProvider } from 'next-themes'; import type { FC, PropsWithChildren } from 'react'; import { THEME_STORAGE_KEY } from '@/next.constants.mjs'; export const ThemeProvider: FC = ({ children }) => ( {children} );