'use client' import { motion } from 'framer-motion' import { Diamond, Truck, Eye, Coins } from 'lucide-react' const infraItems = [ { icon: Diamond, title: "智慧会员体系", description: "一次注册,全城打通
全平台消费数据互通" }, { icon: Truck, title: "供应链赋能", description: "积分当钱花,进货更便宜
源头工厂直供去库存" }, { icon: Eye, title: "智能巡店系统", description: "手机看店,AI管店
客流热力图实时分析" }, { icon: Coins, title: "数智积分体系", description: "基于真实消费产生
拒绝泡沫,价值恒定" } ] export function Infrastructure() { return (
{/* Section Header - 响应式 */}

统一高效的生态基础设施

{/* 已移除:为上市合规打造的底层架构 */}
{/* Grid - 响应式布局 */}
{infraItems.map((item, index) => ( {/* Icon - 响应式 */}
{/* Title - 响应式 */}

{item.title}

{/* Description - 响应式 */}

))}
) }