import { Link } from 'react-router-dom'; import { FaGithub } from 'react-icons/fa'; import { FaSun, FaMoon } from 'react-icons/fa'; import logo from '../assets/logo.svg'; import { useTranslation } from '../i18n'; import { useLocalePath } from '../middleware'; import { useTheme } from '../context/ThemeContext'; const Footer = () => { const currentYear = new Date().getFullYear(); const { t, locale, setLocale } = useTranslation(); const localePath = useLocalePath(); const { theme, toggleTheme } = useTheme(); return ( ); }; export default Footer;