2022-08-04 11:42:53 +00:00
|
|
|
// @ts-check
|
2023-01-23 09:37:39 +00:00
|
|
|
|
2022-08-04 11:42:53 +00:00
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
2022-12-23 11:29:16 +00:00
|
|
|
|
2022-08-04 11:42:53 +00:00
|
|
|
const sidebars = {
|
2023-03-21 11:08:00 +00:00
|
|
|
main: [
|
2023-05-04 12:46:34 +00:00
|
|
|
"overview/what-is-waku",
|
2023-03-22 03:06:52 +00:00
|
|
|
"overview/history",
|
|
|
|
"overview/why-waku",
|
2023-05-04 14:01:05 +00:00
|
|
|
"overview/use-cases",
|
2023-03-22 03:06:52 +00:00
|
|
|
"overview/who-is-using-waku",
|
|
|
|
"overview/implementations",
|
2022-08-04 11:42:53 +00:00
|
|
|
{
|
2022-12-23 11:29:16 +00:00
|
|
|
type: "category",
|
2023-05-13 20:58:19 +00:00
|
|
|
label: "Waku Concepts",
|
2022-12-23 11:29:16 +00:00
|
|
|
collapsed: false,
|
|
|
|
collapsible: true,
|
|
|
|
items: [
|
2023-05-13 20:58:19 +00:00
|
|
|
"overview/concepts/protocols",
|
2023-05-14 05:08:18 +00:00
|
|
|
"overview/concepts/network-domains",
|
|
|
|
"overview/concepts/node-discovery",
|
2023-03-22 03:06:52 +00:00
|
|
|
"overview/concepts/transports-in-waku",
|
|
|
|
"overview/concepts/content-topics",
|
|
|
|
"overview/concepts/security-features",
|
|
|
|
"overview/concepts/research-in-progress",
|
|
|
|
"overview/concepts/waku-vs-libp2p",
|
2022-12-23 11:29:16 +00:00
|
|
|
],
|
2022-08-04 11:42:53 +00:00
|
|
|
},
|
|
|
|
],
|
2023-03-21 11:08:00 +00:00
|
|
|
browser: [
|
2023-03-26 22:39:24 +00:00
|
|
|
"browser/introduction",
|
|
|
|
"browser/quick-start",
|
|
|
|
"browser/build-chat-app",
|
2023-03-21 11:08:00 +00:00
|
|
|
]
|
2022-08-04 11:42:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = sidebars;
|