import { useTranslation } from 'react-i18next' import { Globe } from 'lucide-react' import i18n from '../utils/i18n' export default function Footer() { const { t } = useTranslation() const currentLang = i18n.language const changeLanguage = (lng) => { i18n.changeLanguage(lng) } return ( ) }