From d2f92b8a55b4d1973f87b8df0fe98b57ed9b9133 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Sat, 21 Feb 2026 22:59:32 +0800 Subject: [PATCH] feat: update services section with dark tech theme --- src/components/sections/services-section.tsx | 23 +++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) 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 */}