- 在导航栏配置中新增AI入口,图标为机器人 - 在侧边栏添加AI相关文档分组OpenCode,包含opencode-cli和opencode-tui - 添加ChatGPT、OpenClaw、iFlow等AI工具文档链接 - 配置简化主页侧边栏显示,关闭默认侧边栏显示
31 lines
551 B
TypeScript
31 lines
551 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/",
|
|
},
|
|
{
|
|
text: "AI",
|
|
icon: "mdi:robot-outline",
|
|
link: "/ai/",
|
|
},
|
|
]);
|