76 lines
2.7 KiB
TypeScript
76 lines
2.7 KiB
TypeScript
export const topNavigation = [
|
|
{
|
|
label: '首页',
|
|
to: '/'
|
|
},
|
|
{
|
|
label: '产品中心',
|
|
to: '/products/logistics',
|
|
children: [
|
|
{
|
|
label: '港航电商系列产品',
|
|
to: '/products/ecommerce',
|
|
children: [
|
|
{ label: '岸基海运订舱平台', to: '/products/ecommerce/freight-booking' },
|
|
{ label: '岸基网络货运平台', to: '/products/ecommerce/net-cargo' },
|
|
{ label: '岸基网上业务大厅平台', to: '/products/ecommerce/obh' },
|
|
{ label: '岸基大宗商品贸易平台', to: '/products/ecommerce/bctp' }
|
|
]
|
|
},
|
|
{
|
|
label: '全程物流链系列产品',
|
|
to: '/products/logistics',
|
|
children: [
|
|
{ label: '岸基全程物流链系统', to: '/products/logistics/platform' },
|
|
{ label: '岸基车辆运输管理系统', to: '/products/logistics/vehicle-transport' },
|
|
{ label: '岸基仓储管理系统', to: '/products/logistics/warehouse' },
|
|
{ label: '岸基船舶代理系统', to: '/products/logistics/ship-agent' },
|
|
{ label: '岸基货运代理系统', to: '/products/logistics/cargo-agent' }
|
|
]
|
|
},
|
|
{
|
|
label: '云码头系列产品',
|
|
to: '/products/port',
|
|
children: [
|
|
{ label: '岸基云码头智能操作系统', to: '/products/port/cdi' },
|
|
{ label: '岸基云码头集装箱智能操作系统', to: '/products/port/cdi-container' },
|
|
{ label: '岸基云码头散杂货智能操作系统', to: '/products/port/cdi-bulk' },
|
|
{ label: '岸基云场站智能操作系统', to: '/products/port/cloud-yard' }
|
|
]
|
|
},
|
|
{
|
|
label: '航运数字系列产品',
|
|
to: '/products/shipping',
|
|
children: [
|
|
{ label: '岸基船公司运营管理系统', to: '/products/shipping/company' },
|
|
{ label: '岸基船舶管理系统', to: '/products/shipping/boat' }
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
label: '解决方案',
|
|
children: [
|
|
{ label: '内河港航一体化解决方案', to: '/solutions/inland-river-shipping' },
|
|
{ label: '大宗货物供应链解决方案', to: '/solutions/supply-chain' },
|
|
{ label: '港口供应链解决方案', to: '/solutions/port-supply-chain' },
|
|
{ label: '全程物流链解决方案', to: '/solutions/logistics-chain' }
|
|
]
|
|
},
|
|
{
|
|
label: '客户案例',
|
|
to: '/cases'
|
|
},
|
|
{
|
|
label: '关于我们',
|
|
to: '/contact'
|
|
}
|
|
] as const
|
|
|
|
export const footerLinks = [
|
|
{ label: '关于我们', to: '/contact' },
|
|
{ label: '产品中心', to: '/products/logistics' },
|
|
{ label: '人才招聘', to: '/company/joinus' },
|
|
{ label: '客户案例', to: '/cases' }
|
|
] as const
|