import Link from "next/link"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; export default function HomePage() { return (
{/* Hero Section */}

TradingAgents

多代理 LLM 金融交易框架

{/* Features Grid */}
{/* Workflow Section */} 運作方式 TradingAgents 模擬真實交易公司,配備專業化的 LLM 代理
); } function FeatureCard({ title, description, icon }: { title: string; description: string; icon: string }) { return (
{icon}
{title}

{description}

); } function WorkflowStep({ number, title, description }: { number: number; title: string; description: string }) { return (
{number}

{title}

{description}

); }