feat(All):Initial

This commit is contained in:
2025-10-04 23:36:07 +08:00
commit 2b4e5d2668
1321 changed files with 415958 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import { defineNavbarConfig } from 'vuepress-theme-plume';
import { version } from '../../package.json';
export const navbar = defineNavbarConfig([
{
text: '指南',
icon: 'icon-park-outline:guide-board',
link: '/notes/guide/介绍.md',
},
{ text: 'SDK', link: '/notes/sdk/README.md', icon: 'carbon:api' },
{ text: '推广中心', link: '/promotion/', icon: 'mdi:star-shooting-outline' },
{
text: '更多',
icon: 'icon-park-outline:more-three',
items: [
{ text: '常见问题', link: '/questions/', icon: 'wpf:faq' },
],
},
{
text: `${version}`,
icon: 'codicon:versions',
items: [
{
text: '更新日志',
link: '/notes/update/logs/',
}
],
},
])