import { useTranslations } from 'next-intl'; export function Footer() { const t = useTranslations(); const footerLinks = [ { labelKey: 'Nav.home', href: '#' }, { labelKey: 'Nav.solutions', href: '#ecosystem' }, { labelKey: 'Nav.industries', href: '#destinations' }, { labelKey: 'Nav.pricing', href: '#pricing' }, { labelKey: 'Nav.contact', href: '#contact' }, ]; const socialLinks = [ { icon: 'uil-envelope-alt', href: '#' }, { icon: 'uil-phone', href: '#' }, { icon: 'uil-youtube', href: '#' }, ]; return ( ); }