"use client"; import Link from 'next/link'; import { useLocale } from '@/contexts/LocaleContext'; import { usePageContent } from '@/hooks/usePageContent'; export default function Footer() { const { locale, t } = useLocale(); const { content } = usePageContent('home', locale); // Prefixo para links const prefix = locale === 'pt' ? '' : `/${locale}`; // Badge do hero (dinâmica) const badge = content?.hero?.badge || { text: 'Coca-Cola', show: true }; return ( ); }