import { defineUserConfig, defaultTheme } from "vuepress";

export default defineUserConfig({
  lang: "zh-CN",
  title: "Nonebot Bison",
  description: "Docs for Nonebot Bison",
  theme: defaultTheme({
    navbar: [
      { text: "主页", link: "/" },
      {
        text: "使用",
        children: [
          {
            text: "安装",
            link: "/usage/install.md",
            activeMatch: "^/usage/install",
          },
          {
            text: "入门",
            link: "/usage/easy-use.md",
            activeMatch: "^/usage/easy-use",
          },
          {
            text: "详述",
            link: "/usage",
            activeMatch: "^/usage$",
          },
        ],
      },
      { text: "开发", link: "/dev/" },
      { text: "Github", link: "https://github.com/felinae98/nonebot-bison" },
    ],
  }),
});