2022-08-04 11:42:53 +00:00
|
|
|
// @ts-check
|
2023-01-23 09:37:39 +00:00
|
|
|
|
2023-05-19 23:35:51 +00:00
|
|
|
/** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
|
2022-08-04 11:42:53 +00:00
|
|
|
const sidebars = {
|
2023-05-19 23:35:51 +00:00
|
|
|
main: [
|
|
|
|
{
|
|
|
|
type: "category",
|
2023-06-06 02:47:24 +00:00
|
|
|
label: "About Waku",
|
|
|
|
collapsible: false,
|
2023-05-19 23:35:51 +00:00
|
|
|
items: [
|
2023-06-06 02:47:24 +00:00
|
|
|
"overview/index",
|
|
|
|
"overview/history",
|
|
|
|
"overview/why-waku",
|
|
|
|
"overview/use-cases",
|
|
|
|
{
|
|
|
|
type: "html",
|
2023-06-08 12:28:25 +00:00
|
|
|
value: "<a href='/guides/nodes-and-sdks' target='_blank' rel='noopener noreferrer' class='menu__link external-link'>Nodes and SDKs <svg width='13.5' height='13.5' viewBox='0 0 24 24'><path fill='currentColor' d='M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z'></path></svg></a>"
|
2023-06-06 02:47:24 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "html",
|
|
|
|
value: "<a href='/presentations' target='_blank' rel='noopener noreferrer' class='menu__link external-link'>Presentations <svg width='13.5' height='13.5' viewBox='0 0 24 24'><path fill='currentColor' d='M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z'></path></svg></a>"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
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"
|
|
|
|
]
|
|
|
|
}
|
2023-05-19 23:35:51 +00:00
|
|
|
]
|
2023-06-06 02:47:24 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
guides: [
|
2023-05-19 23:35:51 +00:00
|
|
|
{
|
|
|
|
type: "category",
|
2023-06-06 02:47:24 +00:00
|
|
|
label: "Guides",
|
|
|
|
collapsible: false,
|
2023-05-19 23:35:51 +00:00
|
|
|
items: [
|
2023-06-08 12:28:25 +00:00
|
|
|
"guides/nodes-and-sdks",
|
|
|
|
"guides/run-nwaku-node"
|
2023-05-19 23:35:51 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2023-05-22 05:19:27 +00:00
|
|
|
community: [
|
2023-06-02 18:12:50 +00:00
|
|
|
{
|
2023-06-06 02:47:24 +00:00
|
|
|
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"
|
|
|
|
}
|
|
|
|
]
|
2023-06-02 18:12:50 +00:00
|
|
|
}
|
2023-05-19 23:35:51 +00:00
|
|
|
]
|
2022-08-04 11:42:53 +00:00
|
|
|
};
|
|
|
|
|
2023-05-19 23:35:51 +00:00
|
|
|
module.exports = sidebars;
|