import Link from 'next/link'; import { getLocale, getTranslations } from 'next-intl/server'; import { Mail, Linkedin, Github, MapPin } from 'lucide-react'; const Footer = async () => { const locale = await getLocale(); const t = await getTranslations('footer'); const currentYear = new Date().getFullYear(); return ( ); }; export default Footer;