'use client'; interface FooterProps { t?: { footer?: { copyright?: string; }; }; } export default function Footer({ t }: FooterProps) { const currentYear = new Date().getFullYear(); return ( ); }