'use client' import { motion } from 'framer-motion' import { Target, Eye, Heart, Star, Shield, Users, TrendingUp } from 'lucide-react' export function MissionVision() { const coreValues = [ { icon: Target, title: "使命", content: "军工技术赋能实体经济
人工智能驱动万商互联", color: "from-orange-500 to-red-500" }, { icon: Eye, title: "愿景", content: "天下白马是一家
一起赚钱一起花", color: "from-blue-500 to-indigo-600" }, { icon: Heart, title: "价值观", content: "共创 · 共享 · 共富", color: "from-green-500 to-emerald-600" } ] return (
{/* 背景装饰 */}
{/* 标题 */}

我们的信仰

坚守初心,砥砺前行,白马家园与您携手共创美好未来

{/* 三大核心支柱 */}
{coreValues.map((item, index) => (
{/* 图标 */}
{/* 标题 */}

{item.title}

{/* 内容 */}
{/* 装饰线 */}
))}
{/* 底部标语 */}
数智连接万商 共创美好未来
) }