'use client' import { motion } from 'framer-motion' import { Button } from '@/components/ui/button' import { CreditCard, Users, Network, Database } from 'lucide-react' // 根据框图重构四大核心板块 const products = [ { title: '高效安全的金融科技支撑', enTitle: 'Fintech Support', description: '收单-分销-结算一体化,多通道AI路由,保障资金安全与高效分账。', icon: CreditCard, color: 'bg-gradient-to-br from-[#0A1931] to-[#185ADB]', features: [ { title: "白马智付", desc: "锁粉 / 自动分佣 / AI路由" }, { title: "智能设备", desc: "智慧收银系统 / 支持绿色积分 / 智能监控巡店" }, { title: "支付能力", desc: "主扫、被扫模式全支持 / 强大技术底座" } ] }, { title: '简单易用的私域运营工具', enTitle: 'Private Domain Tools', description: 'AI驱动的私域流量运营神器,让获客、留存、转化变得简单高效。', icon: Users, color: 'bg-gradient-to-br from-[#FF6600] to-[#FF8C00]', features: [ { title: "AI数字人", desc: "AI直播/AI导购/AI客服/AI私域" }, { title: "积分权益", desc: "兑换AI直播 / 营销获客权益" }, { title: "企微私域", desc: "AI数字员工自动实现:社群运营/维护/导购/客服" } ] }, { title: '轻松锁客的异业联盟系统', enTitle: 'Alliance System', description: '打破单打独斗,通过异业联盟锁定客户终身价值,实现跨界收益。', icon: Network, color: 'bg-gradient-to-br from-[#185ADB] to-[#0A1931]', features: [ { title: "锁定客户", desc: "扫码即锁定推荐关系,终身享受消费分佣" }, { title: "跨界分佣", desc: "赚360行的钱 / 跨门店收益" }, { title: "供应链分佣", desc: "分享优质供应链商品获利" } ] }, { title: '统一高效的生态基础设施', enTitle: 'Ecological Infrastructure', description: '为小微企业提供完整的数智化基建,打通会员、资产与供应链。', icon: Database, color: 'bg-gradient-to-br from-[#059669] to-[#10B981]', features: [ { title: "会员系统", desc: "跨平台生态融合 / 统一身份" }, { title: "数字资产体系", desc: "RWA资产 / 积分、抵用券、金币等" }, { title: "供应链资源", desc: "稳定安全靠谱" } ] } ] export function ProductPreview() { return (
{/* Section Header */}
AI时代小微创业 + 消费循环生态圈 四大核心数智化产品矩阵,全方位赋能实体商业
{/* Product Cards Grid - 2x2 Layout recommended for 4 items */}
{products.map((product, index) => (
{/* Header with Icon */}

{product.title}

{product.enTitle}
{/* Content */}

{product.description}

{/* Features List */}
    {product.features.map((feature, fIndex) => (
  • {feature.title} {feature.desc}
  • ))}
))}
) }