26 lines
463 B
TypeScript
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/",
|
|
},
|
|
]);
|