import { useTranslations } from 'next-intl'; import Link from 'next/link'; import { FaGithub, FaLinkedin } from 'react-icons/fa'; export default function Footer() { const t = useTranslations('footer'); const githubUrl = process.env.NEXT_PUBLIC_GITHUB_URL || '#'; const linkedinUrl = process.env.NEXT_PUBLIC_LINKEDIN_URL || '#'; return ( ); }