'use client'; // import LocaleSwitcher from 'components/ui/locale-switcher/locale-switcher'; import Logo from 'components/ui/logo/logo'; import { useTranslations } from 'next-intl'; import Link from 'next/link'; // interface FooterProps { // localeData: { // type: string; // locale: string; // translations: []; // }; // } const Footer = () => { // const locale = useLocale(); const currentYear = new Date().getFullYear(); const copyrightDate = 2023 + (currentYear > 2023 ? `-${currentYear}` : ''); const t = useTranslations('ui'); return ( ); }; export default Footer;