import { useTranslation } from 'react-i18next'; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from '@/components/ui/select'; import { type LanguageCode, SUPPORTED_LANGUAGES } from '@/i18n'; export function LanguageSelect() { const { i18n } = useTranslation(); const current = SUPPORTED_LANGUAGES.find((l) => l.code === i18n.language)?.code ?? 'en'; return ( ); }