"use client"; import { useTheme } from "@/app/context/ThemeContext"; import { useTranslation } from "@/i18n/navigation"; export default function ThemeToggle() { const { theme, toggleTheme } = useTheme(); const { t } = useTranslation("common"); const isDark = theme === "dark"; return ( ); }