'use client'; import { motion, useInView } from 'framer-motion'; import { useRef } from 'react'; import { StaticLink } from '@/components/ui/static-link'; import { RippleButton } from '@/components/ui/ripple-button'; import { COMPANY_INFO } from '@/lib/constants'; import { ArrowRight, Target, HeartHandshake, Award } from 'lucide-react'; import { useReducedMotion } from '@/hooks/use-reduced-motion'; import { InkReveal, BlurReveal, StaggerContainer, StaggerItem } from '@/lib/animations'; import { TextReveal } from '@/components/ui/scroll-animations'; const VALUES = [ { title: '务实', description: '不追逐风口,只做真正为客户创造价值的事。', icon: Target }, { title: '陪伴', description: '交付只是开始,长期陪跑才是我们的承诺。', icon: HeartHandshake }, { title: '专业', description: '用扎实的工程能力和行业经验赢得信任。', icon: Award }, ]; export function AboutSection() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: '-100px' }); const shouldReduceMotion = useReducedMotion(); return (
{/* 网格背景 */}
{/* 标题 - InkReveal 墨迹揭示 */}

关于 {COMPANY_INFO.shortName}

{COMPANY_INFO.slogan}

{/* 品牌理念 - TextReveal 逐词揭示 */} {/* 核心理念强调 - BlurReveal */}

我们只做一件事:成为您数字化转型路上,信得过的成长伙伴。

{/* 核心价值观 - StaggerContainer 交错入场 */} {VALUES.map((value) => { const Icon = value.icon; return (

{value.title}

{value.description}

); })}
{/* CTA */} 了解更多关于我们
); }