module.exports = { theme: "cosmos", title: "Kava Documentation", themeConfig: { logo: { src: "/logo.svg", }, custom: true, sidebar: { auto: false, nav: [ { title: "Reference", children: [ { title: "Modules", path: "/Modules", directory: true }, ] }, { title: "Kava Tools", children: [ { title: "Chainlink Price Oracle", path: "/tools/oracle.html" }, { title: "Auction Bot", path: "/tools/auction.html", }, { title: "Sentinel", path: "/tools/sentinel.html", }, { title: "Community Tools", path: "/tools/community.html", } ] }, { title: "Building on Kava", children: [ { title: "JavaScript SDK", path: "/building/javascript-sdk.html" }, { title: "Migration Guide: kava-3", path: "/building/kava-3-migration-guide.html" } ] }, { title: "Resources", children: [ { title: "REST API Spec", path: "https://rpc.kava.io/" }, { title: "Protocol Reference", path: "https://pkg.go.dev/github.com/kava-labs/kava?tab=subdirectories" } ] } ] }, footer: { logo: "/logo.svg", textLink: { text: "kava.io", url: "https://www.kava.io" }, services: [ { service: "twitter", url: "https://twitter.com/kava_labs" }, { service: "medium", url: "https://medium.com/kava-labs" }, { service: "telegram", url: "https://t.me/kavalabs" }, { service: "discord", url: "https://discord.gg/JJYnuCx" }, { service: "github", url: "https://github.com/kava-labs" } ], smallprint: `© ${new Date().getFullYear()} Kava Labs.`, links: [ { title: "Community", children: [ { title: "Blog", url: "https://medium.com/kava-labs" }, { title: "Chat", url: "https://t.me/kavalabs" } ] }, { title: "Contributing", children: [ { title: "Contributing to the docs", url: "https://github.com/Kava-Labs/kava/tree/master/docs" }, { title: "Source code on GitHub", url: "https://github.com/Kava-Labs/kava" } ] }, { title: "Related Docs", children: [ { title: "Cosmos SDK", url: "https://cosmos.network/docs" }, { title: "Binance Chain", url: "https://docs.binance.org" } ] }, ] } } };