import { motion } from 'framer-motion' import { Building2, Mail, MapPin, Phone } from 'lucide-react' import { Link, useLocation } from 'react-router-dom' import { COMPANY_INFO, NAVIGATION_MENU } from '../lib/constants' import { getLocaleFromPathname, withLocalePath } from '../lib/i18n' export const Footer: React.FC = () => { const location = useLocation() const locale = getLocaleFromPathname(location.pathname) const currentYear = new Date().getFullYear() return ( ) } export default Footer