import { useTranslations } from 'next-intl'; const Footer = () => { const t = useTranslations('Footer'); // const shortLinks = [ // { name: 'About', href: '/about' }, // { name: 'Contact', href: '/contact' }, // ]; return (

{t('copyright', { year: new Date().getFullYear() })}

); }; export default Footer;