import { motion } from 'framer-motion' import { Terminal, Shield, Cpu, BarChart3 } from 'lucide-react' import { t, Language } from '../../i18n/translations' interface AboutSectionProps { language: Language } export default function AboutSection({ language }: AboutSectionProps) { const features = [ { icon: Shield, title: language === 'zh' ? '完全自主控制' : 'Full Control', desc: language === 'zh' ? '自托管,数据安全' : 'Self-hosted, data secure', }, { icon: Cpu, title: language === 'zh' ? '多 AI 支持' : 'Multi-AI Support', desc: language === 'zh' ? 'DeepSeek, GPT, Claude...' : 'DeepSeek, GPT, Claude...', }, { icon: BarChart3, title: language === 'zh' ? '实时监控' : 'Real-time Monitor', desc: language === 'zh' ? '可视化交易看板' : 'Visual trading dashboard', }, ] return (
{/* Background Decoration */}
{/* Left Content */} {t('aboutNofx', language)}

{t('whatIsNofx', language)}

{t('nofxNotAnotherBot', language)} {t('nofxDescription1', language)}

{/* Feature Pills */}
{features.map((feature, index) => (
{feature.title}
{feature.desc}
))}
{/* Right - Terminal */}
{/* Terminal Header */}
terminal
{/* Terminal Content */}
$ git clone https://github.com/NoFxAiOS/nofx.git
$ cd nofx && chmod +x start.sh
$ ./start.sh start --build
✓ {t('startupMessages1', language)}
✓ {t('startupMessages2', language)}
✓ {t('startupMessages3', language)}
_
) }