create js-waku dir

This commit is contained in:
LordGhostX 2023-05-20 01:15:16 +01:00
parent c062261789
commit 01078c9921
No known key found for this signature in database
GPG Key ID: 520CC5DC4F94FCC7
6 changed files with 15 additions and 6 deletions

View File

@ -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)

View File

@ -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"
}
]
}
]
},

View File

@ -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"
]
};