Files
SiMengWebSite_Notes/docs/.vuepress/navbar.ts
祀梦 566b6cd385 feat(docs): 添加密码学基础文档和mermaid支持
新增密码学基础文档,包含古典加密算法和现代密码学介绍
添加mermaid图表支持以展示密码学概念
在导航栏新增技术理论分类
更新package.json添加mermaid依赖
2025-10-27 19:29:40 +08:00

73 lines
1.1 KiB
TypeScript

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