refactor: update navigation to use independent page links

This commit is contained in:
张翔
2026-02-26 21:27:19 +08:00
parent cb512bb13a
commit 2b08a536eb
2 changed files with 53 additions and 129 deletions
+7 -7
View File
@@ -11,14 +11,14 @@ export const COMPANY_INFO = {
address: '中国四川省成都市龙泉驿区幸福路12号',
} as const;
// Navigation Items - 单页面锚点导航(顺序必须与页面 Section 顺序一致)
// Navigation Items - 独立页面导航
export const NAVIGATION = [
{ id: 'home', label: '首页', href: '#home' },
{ id: 'solutions', label: '核心业务', href: '/solutions' },
{ id: 'products', label: '产品服务', href: '#products' },
{ id: 'about', label: '关于我们', href: '#about' },
{ id: 'news', label: '新闻动态', href: '#news' },
{ id: 'contact', label: '联系我们', href: '#contact' },
{ id: 'home', label: '首页', href: '/' },
{ id: 'services', label: '核心业务', href: '/services' },
{ id: 'products', label: '产品服务', href: '/products' },
{ id: 'about', label: '关于我们', href: '/about' },
{ id: 'news', label: '新闻动态', href: '/news' },
{ id: 'contact', label: '联系我们', href: '/contact' },
] as const;
// Stats Data