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: [
|
2023-05-27 06:45:58 +00:00
|
|
|
"getting-started/index",
|
|
|
|
"getting-started/history",
|
|
|
|
"getting-started/why-waku",
|
|
|
|
"getting-started/use-cases",
|
2023-05-23 11:50:55 +00:00
|
|
|
{
|
|
|
|
type: "link",
|
2023-05-27 06:45:58 +00:00
|
|
|
label: "SDKs and Nodes",
|
|
|
|
href: "/guides/sdks-and-nodes"
|
2023-05-23 11:50:55 +00:00
|
|
|
},
|
2023-05-24 17:29:24 +00:00
|
|
|
{
|
|
|
|
type: "link",
|
2023-05-27 06:45:58 +00:00
|
|
|
label: "Video Presentations",
|
2023-05-24 17:29:24 +00:00
|
|
|
href: "/presentations"
|
|
|
|
},
|
2023-05-19 23:35:51 +00:00
|
|
|
{
|
|
|
|
type: "category",
|
2023-05-21 00:32:38 +00:00
|
|
|
label: "Concepts",
|
2023-05-19 23:35:51 +00:00
|
|
|
collapsed: false,
|
|
|
|
collapsible: true,
|
|
|
|
items: [
|
2023-05-27 06:45:58 +00:00
|
|
|
"getting-started/concepts/protocols",
|
|
|
|
"getting-started/concepts/peer-discovery",
|
|
|
|
"getting-started/concepts/network-domains",
|
|
|
|
"getting-started/concepts/content-topics",
|
|
|
|
"getting-started/concepts/transports"
|
2023-05-19 23:35:51 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Reference",
|
|
|
|
collapsed: false,
|
|
|
|
collapsible: true,
|
|
|
|
items: [
|
2023-05-27 06:45:58 +00:00
|
|
|
"getting-started/reference/glossary",
|
|
|
|
"getting-started/reference/security-features",
|
|
|
|
"getting-started/reference/research-in-progress",
|
|
|
|
"getting-started/reference/waku-vs-libp2p"
|
2023-05-19 23:35:51 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2023-05-27 06:45:58 +00:00
|
|
|
guides: [
|
|
|
|
"guides/sdks-and-nodes"
|
2023-05-22 05:19:27 +00:00
|
|
|
],
|
|
|
|
community: [
|
2023-05-22 10:53:23 +00:00
|
|
|
"powered-by-waku",
|
2023-05-22 12:35:34 +00:00
|
|
|
"community",
|
2023-05-24 17:29:24 +00:00
|
|
|
"contribute",
|
|
|
|
"presentations"
|
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;
|