feat: 调整首页导航栏顺序为 模型→评测→文档→控制台
This commit is contained in:
parent
5b5d7a95f3
commit
3cb9c85ea8
|
|
@ -38,11 +38,6 @@ export const useNavigation = (t, docsNav, headerNavModules) => {
|
||||||
itemKey: 'pricing',
|
itemKey: 'pricing',
|
||||||
to: '/pricing',
|
to: '/pricing',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
text: t('控制台'),
|
|
||||||
itemKey: 'console',
|
|
||||||
to: '/console',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: t('评测'),
|
text: t('评测'),
|
||||||
itemKey: 'benchmark',
|
itemKey: 'benchmark',
|
||||||
|
|
@ -59,6 +54,11 @@ export const useNavigation = (t, docsNav, headerNavModules) => {
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
: []),
|
: []),
|
||||||
|
{
|
||||||
|
text: t('控制台'),
|
||||||
|
itemKey: 'console',
|
||||||
|
to: '/console',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
// 根据配置过滤导航链接
|
// 根据配置过滤导航链接
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue