1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00
Guide 566c75d5a4
Merge pull request #1993 from Mister-Hope/update
feat: update deps and switch to pnpm
2023-04-28 16:27:35 +08:00

32 lines
924 B
TypeScript

import { navbar } from "vuepress-theme-hope";
export default navbar([
{ text: "面试指南", icon: "java", link: "/home.md" },
{ text: "知识星球", icon: "code", link: "/about-the-author/zhishixingqiu-two-years.md" },
{ 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" },
],
},
]);