diff --git a/docs/browser/build-chat-app.mdx b/docs/clients/js-waku/build-chat-app.mdx similarity index 100% rename from docs/browser/build-chat-app.mdx rename to docs/clients/js-waku/build-chat-app.mdx diff --git a/docs/browser/introduction.mdx b/docs/clients/js-waku/introduction.mdx similarity index 100% rename from docs/browser/introduction.mdx rename to docs/clients/js-waku/introduction.mdx diff --git a/docs/browser/quick-start.mdx b/docs/clients/js-waku/quick-start.mdx similarity index 100% rename from docs/browser/quick-start.mdx rename to docs/clients/js-waku/quick-start.mdx diff --git a/docs/overview/implementations.md b/docs/overview/clients.md similarity index 92% rename from docs/overview/implementations.md rename to docs/overview/clients.md index a0aa58b..ccae4ac 100644 --- a/docs/overview/implementations.md +++ b/docs/overview/clients.md @@ -1,8 +1,8 @@ --- -title: Waku Implementations +title: Waku Clients --- -Waku has been implemented in multiple programming languages to address various use cases. The Waku team builds and maintains each implementation, ensuring that updates are provided automatically. +Waku has been implemented in multiple programming languages to address various use cases. The Waku team builds and maintains each client, ensuring that updates are provided automatically. ### [nwaku](https://github.com/waku-org/nwaku) diff --git a/docusaurus.config.js b/docusaurus.config.js index cdf104a..1e1b263 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -56,6 +56,17 @@ const config = { position: "left", sidebarId: "main", label: "Getting Started" + }, + { + type: "dropdown", + label: "Waku Clients", + position: "left", + items: [ + { + label: "JS-Waku", + to: "/clients/js-waku" + } + ] } ] }, diff --git a/sidebars.js b/sidebars.js index 7be5de2..f64cb3c 100644 --- a/sidebars.js +++ b/sidebars.js @@ -8,7 +8,7 @@ const sidebars = { "overview/why-waku", "overview/use-cases", "overview/who-is-using-waku", - "overview/implementations", + "overview/clients", { type: "category", label: "Waku Concepts", @@ -35,9 +35,7 @@ const sidebars = { } ], js: [ - "browser/introduction", - "browser/quick-start", - "browser/build-chat-app" + "clients/js-waku/introduction" ] };