From ac4f228b0486b95b485c06052b057f9281515787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Thu, 26 Feb 2026 18:46:17 +0800 Subject: [PATCH] feat: update navigation to link to solutions page --- src/components/sections/services-section.tsx | 6 +++--- src/lib/constants.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/sections/services-section.tsx b/src/components/sections/services-section.tsx index b7fb1f8..d12b266 100644 --- a/src/components/sections/services-section.tsx +++ b/src/components/sections/services-section.tsx @@ -28,7 +28,7 @@ export function ServicesSection() { }; return ( -
+
@@ -39,8 +39,8 @@ export function ServicesSection() { transition={{ duration: 0.6 }} className="text-center max-w-3xl mx-auto mb-16" > -

- 我们的 核心服务 +

+ 我们的 核心业务

专业技术团队,为您提供全方位的数字化解决方案 diff --git a/src/lib/constants.ts b/src/lib/constants.ts index 7e72173..54ed68b 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -14,7 +14,7 @@ export const COMPANY_INFO = { // Navigation Items - 单页面锚点导航(顺序必须与页面 Section 顺序一致) export const NAVIGATION = [ { id: 'home', label: '首页', href: '#home' }, - { id: 'services', label: '核心业务', href: '#services' }, + { id: 'solutions', label: '核心业务', href: '/solutions' }, { id: 'products', label: '产品服务', href: '#products' }, { id: 'about', label: '关于我们', href: '#about' }, { id: 'news', label: '新闻动态', href: '#news' },