import { Github, Send, ExternalLink } from 'lucide-react' import { t, Language } from '../../i18n/translations' import { OFFICIAL_LINKS } from '../../constants/branding' interface FooterSectionProps { language: Language } export default function FooterSection({ language }: FooterSectionProps) { const links = { social: [ { name: 'GitHub', href: OFFICIAL_LINKS.github, icon: Github }, { name: 'X (Twitter)', href: OFFICIAL_LINKS.twitter, icon: () => ( ), }, { name: 'Telegram', href: OFFICIAL_LINKS.telegram, icon: Send }, ], resources: [ { name: language === 'zh' ? '文档' : 'Documentation', href: 'https://github.com/NoFxAiOS/nofx/blob/main/README.md', }, { name: 'Issues', href: 'https://github.com/NoFxAiOS/nofx/issues' }, { name: 'Pull Requests', href: 'https://github.com/NoFxAiOS/nofx/pulls' }, ], supporters: [ { name: 'Binance', href: 'https://www.binance.com/join?ref=NOFXENG' }, { name: 'Bybit', href: 'https://partner.bybit.com/b/83856' }, { name: 'OKX', href: 'https://www.okx.com/join/1865360' }, { name: 'Bitget', href: 'https://www.bitget.com/referral/register?from=referral&clacCode=c8a43172' }, { name: 'Gate.io', href: 'https://www.gatenode.xyz/share/VQBGUAxY' }, { name: 'KuCoin', href: 'https://www.kucoin.com/r/broker/CXEV7XKK' }, { name: 'Hyperliquid', href: 'https://app.hyperliquid.xyz/join/AITRADING' }, { name: 'Aster DEX', href: 'https://www.asterdex.com/en/referral/fdfc0e' }, { name: 'Lighter', href: 'https://app.lighter.xyz/?referral=68151432' }, ], } return ( ) }