'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 { COMPANY_INFO } from '@/lib/constants'; import { ArrowRight, CheckCircle2 } from 'lucide-react'; import { useReducedMotion } from '@/hooks/use-reduced-motion'; const VALUES = [ { title: '务实', description: '不追逐风口,只做真正为客户创造价值的事。' }, { title: '陪伴', description: '交付只是开始,长期陪跑才是我们的承诺。' }, { title: '专业', description: '用扎实的工程能力和行业经验赢得信任。' }, ]; export function AboutSection() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: '-100px' }); const shouldReduceMotion = useReducedMotion(); return (
{/* 网格背景 */}
{/* 标题 */}

关于 {COMPANY_INFO.shortName}

{COMPANY_INFO.slogan}

{/* 品牌理念引用 */}

“企业需要的,不是一个高高在上的‘专家’,也不是一个做完就跑的‘卖家’,而是一个能坐下来、一起想办法的同行者。”

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

{/* 核心价值观 */} {VALUES.map((value) => (

{value.title}

{value.description}

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