"use client" import { Moon, Sun } from "lucide-react" import { useTheme } from "next-themes" import { useTranslation } from "@/utils/translation" import { Button } from "@/components/ui/button" export function ThemeToggle() { const { setTheme, theme } = useTheme() const { t } = useTranslation() return ( ) }