feat: update navigation to link to solutions page

This commit is contained in:
张翔
2026-02-26 18:46:17 +08:00
parent 679d49043d
commit ac4f228b04
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -28,7 +28,7 @@ export function ServicesSection() {
};
return (
<section id="services" aria-labelledby="services-heading" className="py-24 bg-white relative overflow-hidden" ref={ref}>
<section id="solutions" aria-labelledby="solutions-heading" className="py-24 bg-white relative overflow-hidden" ref={ref}>
<div className="absolute top-1/3 left-0 w-[400px] h-[400px] bg-[rgba(79,70,229,0.03)] rounded-full blur-3xl" />
<div className="absolute top-1/3 right-0 w-[300px] h-[300px] bg-[rgba(196,30,58,0.02)] rounded-full blur-3xl" />
@@ -39,8 +39,8 @@ export function ServicesSection() {
transition={{ duration: 0.6 }}
className="text-center max-w-3xl mx-auto mb-16"
>
<h2 id="services-heading" className="text-4xl md:text-5xl font-bold text-[#1C1C1C] mb-4">
<span className="text-[#C41E3A]"></span>
<h2 id="solutions-heading" className="text-4xl md:text-5xl font-bold text-[#1C1C1C] mb-4">
<span className="text-[#C41E3A]"></span>
</h2>
<p className="text-lg text-[#5C5C5C] max-w-2xl mx-auto">
+1 -1
View File
@@ -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' },