mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-02 02:21:19 +08:00
feat(web): Footer 增加“支持的交易所”列(Binance、Aster DEX 图标与链接),对齐早期版本记忆
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { useLanguage } from '../../contexts/LanguageContext'
|
||||
import { t } from '../../i18n/translations'
|
||||
import { getExchangeIcon } from '../ExchangeIcons'
|
||||
|
||||
export default function FooterSection() {
|
||||
const { language } = useLanguage()
|
||||
@@ -7,7 +8,7 @@ export default function FooterSection() {
|
||||
<footer style={{ borderTop: '1px solid #2B3139', background: '#181A20' }}>
|
||||
<div className="max-w-[1200px] mx-auto px-6 py-10">
|
||||
{/* Multi-link columns */}
|
||||
<div className="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 gap-8">
|
||||
<div className="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-5 gap-8">
|
||||
<div>
|
||||
<h3 className="text-sm font-semibold mb-3" style={{ color: '#EAECEF' }}>链接</h3>
|
||||
<ul className="space-y-2 text-sm" style={{ color: '#848E9C' }}>
|
||||
@@ -35,6 +36,28 @@ export default function FooterSection() {
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="text-sm font-semibold mb-3" style={{ color: '#EAECEF' }}>支持的交易所</h3>
|
||||
<ul className="space-y-3 text-sm" style={{ color: '#848E9C' }}>
|
||||
<li>
|
||||
<a className="hover:text-[#F0B90B] inline-flex items-center gap-2" href="https://www.binance.com/" target="_blank" rel="noopener noreferrer">
|
||||
<span className="inline-flex items-center" style={{ width: 20, height: 20 }}>
|
||||
{getExchangeIcon('binance', { width: 20, height: 20 })}
|
||||
</span>
|
||||
Binance
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a className="hover:text-[#F0B90B] inline-flex items-center gap-2" href="https://aster.network/" target="_blank" rel="noopener noreferrer">
|
||||
<span className="inline-flex items-center" style={{ width: 20, height: 20 }}>
|
||||
{getExchangeIcon('aster', { width: 20, height: 20 })}
|
||||
</span>
|
||||
Aster DEX
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 className="text-sm font-semibold mb-3" style={{ color: '#EAECEF' }}>支持</h3>
|
||||
<ul className="space-y-2 text-sm" style={{ color: '#848E9C' }}>
|
||||
|
||||
Reference in New Issue
Block a user