import { useState } from 'react' import { motion } from 'framer-motion' import { ArrowRight } from 'lucide-react' import HeaderBar from '../components/landing/HeaderBar' import HeroSection from '../components/landing/HeroSection' import AboutSection from '../components/landing/AboutSection' import FeaturesSection from '../components/landing/FeaturesSection' import HowItWorksSection from '../components/landing/HowItWorksSection' import CommunitySection from '../components/landing/CommunitySection' import AnimatedSection from '../components/landing/AnimatedSection' import LoginModal from '../components/landing/LoginModal' import FooterSection from '../components/landing/FooterSection' export function LandingPage() { const [showLoginModal, setShowLoginModal] = useState(false) return (
setShowLoginModal(true)} /> {/* CTA */}
准备好定义 AI 交易的未来吗? 从加密市场起步,扩展到 TradFi。NOFX 是 AgentFi 的基础架构。
setShowLoginModal(true)} className='flex items-center gap-2 px-10 py-4 rounded-lg font-semibold text-lg' style={{ background: 'var(--brand-yellow)', color: 'var(--brand-black)' }} whileHover={{ scale: 1.05 }} whileTap={{ scale: 0.95 }}> 立即开始 查看源码
{showLoginModal && setShowLoginModal(false)} />}
) }