'use client' import { motion } from 'framer-motion' const stats = [ { value: "120,000+", label: "服务实体商户", highlight: "12万+" }, { value: "500,000+", label: "日均交易笔数", highlight: "50万+" }, { value: "300万+", label: "累计引流人次", highlight: "300万+" }, { value: "20亿+", label: "平台年GMV流水", highlight: "20亿+" } ] export function Stats() { return (
{stats.map((stat, index) => ( {/* 大号数字,突出显示 */}

{stat.highlight}

{/* 下方详细说明 */}

{stat.label}

))}
) }