export interface NavigationItem { id: string; label: string; href: string; } export const NAVIGATION: NavigationItem[] = [ { id: 'home', label: '首页', href: '/' }, { id: 'services', label: '核心业务', href: '/services' }, { id: 'solutions', label: '解决方案', href: '/solutions' }, { id: 'products', label: '产品服务', href: '/products' }, { id: 'cases', label: '成功案例', href: '/cases' }, { id: 'about', label: '关于我们', href: '/about' }, { id: 'news', label: '新闻动态', href: '/news' }, { id: 'contact', label: '联系', href: '/contact' }, ];