'use client'; import { motion } from 'framer-motion'; import { useInView } from 'framer-motion'; import { useRef } from 'react'; import { StaticLink } from '@/components/ui/static-link'; import { RippleButton } from '@/components/ui/ripple-button'; import { ArrowRight, Briefcase, GraduationCap, Target, Users } from 'lucide-react'; const TEAM_MEMBERS = [ { name: '创始人兼CEO', initials: 'CEO', specialties: ['企业战略', '数字化转型', '组织管理'], bio: '15年+企业服务经验,深耕数字化转型领域,擅长从战略高度为企业规划数字化路径。', icon: Target, accentColor: 'from-[#C41E3A] to-[#E85D75]', }, { name: '联合创始人兼CTO', initials: 'CTO', specialties: ['系统架构', '云原生', '微服务'], bio: '12年+技术架构经验,主导过多个大型企业级系统的设计与交付,精通分布式系统。', icon: GraduationCap, accentColor: 'from-[#C41E3A] to-[#D94466]', }, { name: '技术总监', initials: 'TD', specialties: ['全栈开发', '数据工程', 'DevOps'], bio: '10年+全栈开发经验,专注于高质量软件交付和工程效能提升,推动敏捷实践落地。', icon: Briefcase, accentColor: 'from-[#C41E3A] to-[#C41E3A]', }, { name: '咨询总监', initials: 'CD', specialties: ['业务咨询', '流程优化', '项目管理'], bio: '10年+管理咨询经验,擅长客户需求深度分析和解决方案设计,确保项目精准落地。', icon: Users, accentColor: 'from-[#C41E3A] to-[#A01830]', }, ]; const TEAM_STATS = [ { value: '12+', label: '年团队经验' }, { value: '80%', label: '本科及以上学历' }, { value: '4', label: '核心服务' }, { value: '5+', label: '行业覆盖' }, ]; export function TeamSection() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: '-100px' }); return (
{/* 背景装饰 */}
{/* 标题区 */}

核心团队

来自大型IT企业的核心团队,既懂技术又懂业务,能深入理解客户场景,提供真正落地的解决方案。

{/* 团队数据概览 */} {TEAM_STATS.map((stat) => (
{stat.value}
{stat.label}
))}
{/* 团队成员卡片 */}
{TEAM_MEMBERS.map((member, idx) => { const Icon = member.icon; return (
{/* 头像区 */}

{member.name}

{member.initials}
{/* 简介 */}

{member.bio}

{/* 专业领域标签 */}
{member.specialties.map((spec) => ( {spec} ))}
); })}
{/* CTA */} 了解更多
); }