refactor: 拆分 constants.ts 为多个模块文件

This commit is contained in:
张翔
2026-04-21 07:49:36 +08:00
parent 78090d1f15
commit 6e09bcf33e
9 changed files with 508 additions and 629 deletions
+15
View File
@@ -0,0 +1,15 @@
export interface NavigationItem {
id: string;
label: string;
href: string;
}
export const NAVIGATION: NavigationItem[] = [
{ id: 'home', label: '首页', href: '/' },
{ id: 'services', label: '核心业务', href: '/' },
{ id: 'products', label: '产品服务', href: '/' },
{ id: 'cases', label: '成功案例', href: '/' },
{ id: 'about', label: '关于我们', href: '/' },
{ id: 'news', label: '新闻动态', href: '/' },
{ id: 'contact', label: '联系我们', href: '/contact' },
];