diff options
author | kotontrion <[email protected]> | 2024-10-29 13:50:41 +0100 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-10-29 13:50:41 +0100 |
commit | 57f20666e716fde56579b8aa638eed1264f793de (patch) | |
tree | 59b2ebbd770c80049cea4df82109d28f617675fe /docs/vitepress.config.ts | |
parent | 4d9ae88b0bab75779876d465f986791d052414ca (diff) | |
parent | 7e484188e7492ac7945c854bcc3f26cec1863c91 (diff) |
Merge branch 'main' into feat/cava
Diffstat (limited to 'docs/vitepress.config.ts')
-rw-r--r-- | docs/vitepress.config.ts | 40 |
1 files changed, 31 insertions, 9 deletions
diff --git a/docs/vitepress.config.ts b/docs/vitepress.config.ts index a76388b..f542a68 100644 --- a/docs/vitepress.config.ts +++ b/docs/vitepress.config.ts @@ -20,10 +20,11 @@ export default defineConfig({ themeConfig: { logo: "/icon.svg", + outline: "deep", footer: { - message: 'Released under the LGPL v2.1 License', - copyright: 'Logo is created by VDawg' + message: "Released under the LGPL v2.1 License", + copyright: "Logo is created by VDawg", }, nav: [ @@ -43,7 +44,7 @@ export default defineConfig({ { text: "Contributing", link: github("/blob/main/CONTRIBUTING.md") }, { text: "Changelog", link: github("/blob/main/CHANGELOG.md") }, ], - } + }, ], sidebar: [ @@ -58,26 +59,47 @@ export default defineConfig({ ], }, { - text: "AGS", - base: "/guide/ags", - collapsed: false, + text: "TypeScript", + base: "/guide/typescript", + collapsed: true, items: [ { text: "Installation", link: "/installation" }, { text: "First Widgets", link: "/first-widgets" }, { text: "Theming", link: "/theming" }, { text: "CLI and App", link: "/cli-app" }, { text: "Widget", link: "/widget" }, - { text: "Utilities", link: "/utilities" }, { text: "Variable", link: "/variable" }, + { text: "Binding", link: "/binding" }, + { text: "GObject", link: "/gobject" }, + { text: "Utilities", link: "/utilities" }, { text: "FAQ", link: "/faq" }, ], }, { + text: "Lua", + base: "/guide/lua", + collapsed: true, + items: [ + { text: "Installation", link: "/installation" }, + { text: "First Widgets", link: "/first-widgets" }, + { text: "Theming", link: "/theming" }, + { text: "CLI and App", link: "/cli-app" }, + { text: "Widget", link: "/widget" }, + { text: "Variable", link: "/variable" }, + { text: "Binding", link: "/binding" }, + // { text: "GObject", link: "/gobject" }, + { text: "Utilities", link: "/utilities" }, + // { text: "FAQ", link: "/faq" }, + ], + }, + { text: "Libraries", collapsed: true, items: [ { text: "References", link: "/guide/libraries/references" }, - { text: "Astal", link: "https://aylur.github.io/libastal" }, + { text: "IO", link: "https://aylur.github.io/libastal/io" }, + { text: "Astal3", link: "https://aylur.github.io/libastal/astal3" }, + // { text: "Astal4", link: "https://aylur.github.io/libastal/astal4" }, { text: "Apps", link: "/guide/libraries/apps" }, { text: "Auth", link: "/guide/libraries/auth" }, { text: "Battery", link: "/guide/libraries/battery" }, @@ -111,6 +133,6 @@ export default defineConfig({ search: { provider: "local", - } + }, }, }) |