// @ts-check /** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */ const sidebars = { main: [ { type: "category", label: "About Waku", collapsible: false, items: [ "overview/index", "overview/history", "overview/why-waku", "overview/use-cases", { type: "html", value: "SDKs and Nodes " }, { type: "html", value: "Presentations " }, { type: "category", label: "Concepts", collapsed: false, items: [ "overview/concepts/protocols", "overview/concepts/content-topics", "overview/concepts/network-domains", "overview/concepts/peer-discovery", "overview/concepts/transports" ] }, { type: "category", label: "Reference", items: [ "overview/reference/glossary", "overview/reference/security-features", "overview/reference/research-in-progress", "overview/reference/waku-vs-libp2p" ] } ] } ], guides: [ { type: "category", label: "Guides", collapsible: false, items: [ "guides/sdks-and-nodes" ] } ], community: [ { type: "category", label: "Community", collapsible: false, items: [ "powered-by-waku", "community", "contribute", "presentations", { type: "link", label: "Bug Bounty Program", href: "https://hackenproof.com/status-dot-im/waku" } ] } ] }; module.exports = sidebars;