'use client' import { cn } from '@langgenius/dify-ui/cn' import { useTheme } from 'next-themes' type Theme = 'light' | 'dark' | 'system' export default function ThemeSwitcher() { const { theme, setTheme } = useTheme() const handleThemeChange = (newTheme: Theme) => { setTheme(newTheme) } return (