'use client' import { motion } from 'framer-motion' import { Trophy, Award, FileText, Medal, Shield, Zap, Users, Globe, CheckCircle2 } from 'lucide-react' // 扩充后的资质和知识产权数据 const honors = [ { icon: Trophy, title: "科大讯飞 AI 开发者大赛", subtitle: "数字人赛道冠军", color: "bg-orange-100 text-orange-600" }, { icon: Medal, title: "中国产业元宇宙创新大赛", subtitle: "一等奖", color: "bg-blue-100 text-blue-600" }, { icon: Award, title: "退役军人创新创业大赛", subtitle: "一等奖", color: "bg-purple-100 text-purple-600" }, { icon: Globe, title: "元宇宙应用场景大赛", subtitle: "产业生态先锋奖", color: "bg-green-100 text-green-600" } ] const patents = [ { title: "融合多信息的 AI 虚拟人与用户交互方法", type: "发明专利" }, { title: "一种虚拟人物不同表情模型生成方法", type: "发明专利" }, { title: "基于深度学习的智能收银系统", type: "发明专利" }, { title: "多通道智能路由分配算法", type: "发明专利" }, { title: "区块链数据确权与价值分配系统", type: "发明专利" }, { title: "AI 驱动的精准营销推荐系统", type: "发明专利" } ] const certifications = [ { title: "收单外包服务机构备案", desc: "中国支付清算协会备案,合规开展收单外包服务" }, { title: "ISO 9001 质量管理体系认证", desc: "国际标准化组织认证" }, { title: "高新技术企业认定", desc: "享受国家高新技术企业税收优惠" }, { title: "软件企业认定", desc: "符合国家软件产业政策要求" }, { title: "信息安全管理系统认证", desc: "保障用户数据安全" }, { title: "数商备案接入", desc: "合规参与数据要素市场" } ] export function HonorSection() { return (
{/* 大标题 */}

权威认证 · 技术实力

白马家园拥有完备的知识产权体系和权威资质认证,为您的商业合作保驾护航

{/* 1. 权威奖项展示 - 大卡片风格 */}

权威奖项与认可

{honors.map((item, index) => (

{item.title}

{item.subtitle}

))}
{/* 2. 知识产权展示 - 网格布局 */}

自主知识产权 (80+ 项)

{patents.map((item, index) => (

{item.title}

{item.type}
))} {/* 更多专利提示 */}

80+ 项

软件著作权与专利

{/* 3. 资质认证展示 - 详情列表 */}

权威资质认证

{certifications.map((item, index) => (

{item.title}

{item.desc}

))}
{/* 底部强调 */}

合规保障 · 安全无忧

我们拥有收单外包服务机构备案,资金受银监会监管,数商备案接入,工商税务监管系统实时对接, 为您的每一笔交易保驾护航。

) }