1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00
2022-06-13 13:14:26 +08:00

23 lines
816 B
TypeScript

import { defineNavbarConfig } from "vuepress-theme-hope";
export const navbarConfig = defineNavbarConfig([
{ text: "面试指南", icon: "java", link: "/home.md" },
{ text: "优质专栏", icon: "recommend", link: "/zhuanlan/" },
{ text: "开源项目", icon: "github", link: "/open-source-project/" },
{ text: "技术书籍", icon: "book", link: "/books/" },
{ text: "技术文章", icon: "article", link: "/high-quality-technical-articles/" },
{
text: "网站相关",
icon: "info",
children: [
{ text: "走近作者", icon: "zuozhe", link: "/about-the-author/" },
{
text: "旧版入口",
icon: "java",
link: "https://snailclimb.gitee.io/javaguide/#/",
},
{ text: "RSS", icon: "rss", link: "https://javaguide.cn/feed.json" },
],
},
]);