import Link from 'next/link'; import Image from 'next/image'; import { useTranslations, useLocale } from 'next-intl'; export default function Footer() { const t = useTranslations('Footer'); const locale = useLocale(); const currentYear = new Date().getFullYear(); return ( ); }