Files
MyBlog/src/.vuepress/navbar.ts
2025-12-15 23:16:59 +08:00

26 lines
463 B
TypeScript

import { navbar } from "vuepress-theme-hope";
export default navbar([
"/",
{
text: "编程",
icon: "mdi:code-tags",
link: "/programming/",
},
{
text: "工作",
icon: "mdi:briefcase",
link: "/work/",
},
{
text: "应用",
icon: "mdi:application",
link: "/apps/",
},
{
text: "工具箱",
icon: "mdi:toolbox",
link: "/tools/",
},
]);