// components/Footer.tsx import { Link } from 'react-router-dom'; import { useTranslation } from 'react-i18next'; import { Mail, Linkedin, Github, MapPin } from 'lucide-react'; const Footer = () => { const { t } = useTranslation(); const currentYear = new Date().getFullYear(); return ( ); }; export default Footer;