import { Team } from '@/components/about/Team' import { Certifications } from '@/components/about/Certifications' import { Badge } from '@/components/ui/badge' export default function AboutPage() { return (
{/* Hero Section */}
国资背景 · 军工技术

相互成就 · 共创未来

白马家园(白马精选)是一家拥有国资背景的高新技术企业,已获五轮融资超 2 亿元。 我们致力于通过 AI 人工智能、大数据分析、区块链等前沿技术,解决实体商家"流量难、锁客难、变现难"的痛点, 构建万商互联的共享经济生态。

{/* Financing History */}

资本历程

{[ { year: "B轮", title: "启迪之星投资", desc: "进一步夯实技术壁垒与市场版图" }, { year: "A+轮", title: "沂景 / 创世伙伴 / 中测航天", desc: "多方资本加持,加速生态布局" }, { year: "A轮", title: "创世伙伴 CCV 领投", desc: "获得知名风投机构青睐" }, { year: "Pre-A", title: "中体基金领投", desc: "初步验证商业模式" }, { year: "天使轮", title: "玖创 / 唯猎 / 天使湾", desc: "启动创业征程" } ].map((item, index) => (
{item.title}
{item.desc}
))}
) }