55 lines
858 B
TypeScript
55 lines
858 B
TypeScript
import { defineNavbarConfig } from 'vuepress-theme-plume'
|
|
|
|
export default defineNavbarConfig([
|
|
{
|
|
text: '首页',
|
|
link: '/',
|
|
},
|
|
{
|
|
text: '博客',
|
|
link: '/blog/',
|
|
},
|
|
{
|
|
text: '编程笔记',
|
|
items: [
|
|
{
|
|
text: 'LeetCode',
|
|
link: '/programming/leetcode/',
|
|
},
|
|
{
|
|
text: 'C++',
|
|
link: '/programming/cplusplus/',
|
|
},
|
|
{
|
|
text: 'Solidity',
|
|
link: '/programming/solidity/',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
text: '运维',
|
|
items: [
|
|
{
|
|
text: '区块链运维',
|
|
link: '/ops/blockchain/',
|
|
},
|
|
{
|
|
text: 'Linux 运维',
|
|
link: '/ops/linux/',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
text: '工具',
|
|
link: '/tools/',
|
|
},
|
|
{
|
|
text: '关于',
|
|
link: '/about/',
|
|
},
|
|
{
|
|
text: '友情链接',
|
|
link: '/friends/',
|
|
},
|
|
])
|