Files
SiMengWebSite_Notes/docs/.vuepress/navbar.ts
祀梦 9e9e82c1dd feat(docs): 添加系统分析师学习笔记模块并更新依赖
- 新增系统分析师笔记目录及初始章节文件
- 在导航栏和笔记配置中添加系统分析师入口
- 添加系统分析师考试概览文档
- 更新 package.json 依赖:添加 @vuepress/plugin-comment 并升级 @waline/client 版本
2026-03-01 20:47:17 +08:00

81 lines
1.3 KiB
TypeScript

import { defineNavbarConfig } from 'vuepress-theme-plume'
export default defineNavbarConfig([
{
text: '首页',
link: '/',
},
{
text: '博客',
link: '/blog/',
},
{
text: '学科知识',
items: [
{
text: '英语学习笔记',
link: '/subject/english/',
},
{
text: '系统分析师',
link: '/subject/certification/',
},
],
},
{
text: '编程笔记',
items: [
{
text: 'LeetCode',
link: '/programming/leetcode/',
},
{
text: 'Solidity',
link: '/programming/solidity/',
},
{
text: 'Web 开发',
link: '/programming/web/',
}
],
},
{
text:"技术理论",
items:[
{
text: '密码学基础',
link: '/theory/cryptography/',
},
]
},
{
text: '运维',
items: [
{
text: '区块链运维',
link: '/ops/blockchain/',
},
{
text: 'Linux 运维',
link: '/ops/linux/',
},
{
text: 'Docker 运维',
link: '/ops/docker/',
},
],
},
{
text: '工具',
link: '/tools/',
},
{
text: '关于',
link: '/about/',
},
{
text: '友情链接',
link: '/friends/',
},
])