import React from 'react'; import { useTranslations } from 'next-intl'; const Footer: React.FC = () => { const t = useTranslations('Footer'); return ( ); }; export default Footer;