import { Fragment } from 'react'; import { useTranslation } from 'react-i18next'; interface LegalLink { href: string; labelKey: string; fallback: string; } const LINKS: LegalLink[] = [ { href: '/offer', labelKey: 'footer.offer', fallback: 'Публичная оферта' }, { href: '/privacy', labelKey: 'footer.privacy', fallback: 'Политика конфиденциальности' }, { href: '/recurrent-payments', labelKey: 'footer.recurrent', fallback: 'Рекуррентные платежи' }, ]; interface LegalFooterProps { className?: string; } export default function LegalFooter({ className = '' }: LegalFooterProps) { const { t } = useTranslation(); return ( ); }