import React from 'react'; import { Send, MapPin, Mail, Phone } from 'lucide-react'; import { Link, useLocation } from 'react-router-dom'; const Footer: React.FC = () => { const currentYear = new Date().getFullYear(); const location = useLocation(); const isEnglish = location.pathname.startsWith('/en'); const prefix = isEnglish ? '/en' : ''; return ( ); }; export default Footer;