export interface TeamMember { id: string; name: string; title: string; avatar?: string; specialties: string[]; bio: string; yearsOfExperience?: number; certifications?: string[]; isCore?: boolean; } export const TEAM_MEMBERS: TeamMember[] = [ { id: 'member-1', name: '创始人', title: '创始人兼CEO', avatar: undefined, specialties: ['企业战略', '数字化转型', '组织管理'], bio: '核心团队长期从事技术咨询、企业数字化等领域,服务覆盖金融、制造、零售、政务、农业等多个行业。以"客户业务是否真正改善"为衡量标准,追求可量化的业务价值。', yearsOfExperience: 15, certifications: [], isCore: true, }, { id: 'member-2', name: '技术负责人', title: '联合创始人兼CTO', avatar: undefined, specialties: ['系统架构', '云原生', '微服务'], bio: '开发团队成员来自多个大型传统IT企业,具备扎实的工程能力和规范化的交付经验。掌握从前端到后端、从云原生到数据智能的全栈技术能力。', yearsOfExperience: 12, certifications: [], isCore: true, }, { id: 'member-3', name: '技术总监', title: '技术总监', avatar: undefined, specialties: ['全栈开发', '数据工程', 'DevOps'], bio: '团队成员既懂技术又懂业务,能够深入理解客户的真实场景和痛点。以务实态度交付每一个项目,确保技术方案真正落地见效。', yearsOfExperience: 10, certifications: [], isCore: true, }, { id: 'member-4', name: '咨询总监', title: '咨询总监', avatar: undefined, specialties: ['业务咨询', '流程优化', '项目管理'], bio: '不追逐风口,只做真正为客户创造价值的事。交付只是开始,长期陪跑才是我们的承诺。用扎实的工程能力和行业经验赢得信任。', yearsOfExperience: 10, certifications: [], isCore: true, }, ]; export const TEAM_STATS = [ { value: '12+', label: '年核心团队经验' }, { value: '5+', label: '覆盖行业' }, { value: '6', label: '自研产品' }, { value: '10+', label: '团队成员' }, ];