-
Notifications
You must be signed in to change notification settings - Fork 45.8k
/
Copy pathnavbar.ts
27 lines (26 loc) · 917 Bytes
/
navbar.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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: "about",
children: [
{ text: "关于作者", icon: "zuozhe", link: "/about-the-author/" },
{
text: "更新历史",
icon: "history",
link: "/timeline/",
},
{
text: "旧版入口",
icon: "java",
link: "https://snailclimb.gitee.io/javaguide/#/",
},
{ text: "RSS", icon: "rss", link: "https://javaguide.cn/feed.json" },
],
},
]);