import { useTranslations, useLocale } from 'next-intl'; import { brandInfo } from '@repo/brand'; export function Footer() { const t = useTranslations(); const locale = useLocale() as 'id' | 'en'; 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: brandInfo.socialLinks.email }, { icon: 'uil-phone', href: brandInfo.socialLinks.phone }, { icon: 'uil-youtube', href: brandInfo.socialLinks.youtube }, ]; return ( ); }