'use client'; interface FooterProps { currentLang: string; t: { footer: { company: string; products: string; support: string; legal: string; copyright: string; }; }; } export default function Footer({ currentLang, t }: FooterProps) { return ( ); }