diff --git a/src/components/sections/services-section.tsx b/src/components/sections/services-section.tsx index eebaadd..4f7ea6e 100644 --- a/src/components/sections/services-section.tsx +++ b/src/components/sections/services-section.tsx @@ -20,27 +20,25 @@ export function ServicesSection() { const isInView = useInView(ref, { once: true, margin: '-100px' }); return ( -
+
- {/* Section Header */} - + 核心业务 -

- 专业服务,助力发展 +

+ 专业服务,助力发展

-

+

我们提供全方位的技术解决方案,帮助企业实现数字化转型

- {/* Services Grid */}
{SERVICES.map((service, index) => { const Icon = iconMap[service.icon]; @@ -51,15 +49,15 @@ export function ServicesSection() { animate={isInView ? { opacity: 1, y: 0 } : {}} transition={{ duration: 0.5, delay: index * 0.1 }} > - + -
- {Icon && } +
+ {Icon && }
- {service.title} + {service.title} - + {service.description} @@ -69,7 +67,6 @@ export function ServicesSection() { })}
- {/* CTA */}