refactor: update navigation to use independent page links
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user