navbar reorg
This commit is contained in:
parent
01078c9921
commit
6544c9a8d9
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
title: Introduction
|
||||
slug: /clients/js-waku
|
||||
---
|
||||
|
||||
# JS-Waku Documentation
|
|
@ -8,7 +8,7 @@ Waku has been implemented in multiple programming languages to address various u
|
|||
|
||||
The Nim implementation of the Waku protocol is the reference implementation recommended for deploying a node in the cloud or at home.
|
||||
|
||||
### [js-waku](https://github.com/waku-org/js-waku/)
|
||||
### [js-waku](/clients/js-waku)
|
||||
|
||||
The JavaScript/TypeScript implementation of the Waku protocol designed for use in browser environments.
|
||||
|
||||
|
|
|
@ -6,9 +6,7 @@ Since Waku is built on top of libp2p, they share a lot of concepts and terminolo
|
|||
|
||||
## Waku as a Service Network
|
||||
|
||||
Waku intends to incentivize mechanisms to run nodes, but it's not part of libp2p's scope. Additionally, users or developers do not have to deploy their infra as a prerequisite to use Waku. It is a service network.
|
||||
|
||||
However, you are encouraged to [run your node](https://github.com/waku-org/nwaku/tree/master/docs/operators) to support and decentralize the network.
|
||||
Waku intends to incentivize mechanisms to run nodes, but it's not part of libp2p's scope. Additionally, users or developers do not have to deploy their infra as a prerequisite to use Waku. It is a service network. However, you are encouraged to [run your node](https://github.com/waku-org/nwaku/tree/master/docs/operators) to support and decentralize the network.
|
||||
|
||||
## Waku as a Keyturn Solution
|
||||
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
title: Who is Using Waku?
|
||||
---
|
||||
|
||||
### Status
|
||||
### [Status](https://status.im/)
|
||||
|
||||
[Status](https://status.im/) is a secure messaging app, crypto wallet, and Web3 browser built with state-of-the-art technology.
|
||||
Status is a secure messaging app, crypto wallet, and Web3 browser built with state-of-the-art technology.
|
||||
|
||||
### XMTP
|
||||
### [XMTP](https://xmtp.org/)
|
||||
|
||||
[XMTP](https://xmtp.org/) uses Waku to enable secure Web3 messaging in their open protocol and network.
|
||||
XMTP uses Waku to enable secure Web3 messaging in their open protocol and network.
|
||||
|
||||
### RAILGUN
|
||||
### [RAILGUN](https://railgun.org/)
|
||||
|
||||
[RAILGUN](https://railgun.org/) uses Waku to offer private ETH gas payments to users, ensuring anonymity and privacy for their stablecoin and token transactions.
|
||||
RAILGUN uses Waku to offer private ETH gas payments to users, ensuring anonymity and privacy for their stablecoin and token transactions.
|
||||
|
|
|
@ -20,7 +20,6 @@ const config = {
|
|||
presets: [
|
||||
[
|
||||
"@acid-info/logos-docusaurus-preset",
|
||||
/** @type {import("@acid-info/logos-docusaurus-preset").PluginOptions} */
|
||||
({
|
||||
businessUnit: "Waku",
|
||||
customSiteConfig: true,
|
||||
|
@ -53,20 +52,34 @@ const config = {
|
|||
items: [
|
||||
{
|
||||
type: "docSidebar",
|
||||
position: "left",
|
||||
position: "right",
|
||||
sidebarId: "main",
|
||||
label: "Getting Started"
|
||||
},
|
||||
{
|
||||
type: "dropdown",
|
||||
label: "Waku Clients",
|
||||
position: "left",
|
||||
position: "right",
|
||||
items: [
|
||||
{
|
||||
label: "JS-Waku",
|
||||
label: "Overview",
|
||||
to: "/overview/clients"
|
||||
},
|
||||
{
|
||||
label: "JS Waku",
|
||||
to: "/clients/js-waku"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
to: "/powered-by-waku",
|
||||
label: "Powered by Waku",
|
||||
position: "right"
|
||||
},
|
||||
{
|
||||
to: "/community",
|
||||
label: "Community",
|
||||
position: "right"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -77,10 +90,20 @@ const config = {
|
|||
isCloseable: true
|
||||
},
|
||||
footer: {
|
||||
links: [{
|
||||
title: "Waku Clients",
|
||||
items: []
|
||||
},
|
||||
links: [
|
||||
{
|
||||
title: "Waku Clients",
|
||||
items: [
|
||||
{
|
||||
to: "/overview/clients",
|
||||
label: "Overview"
|
||||
},
|
||||
{
|
||||
to: "/clients/js-waku",
|
||||
label: "JS Waku"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Community",
|
||||
items: [{
|
||||
|
|
|
@ -3,12 +3,12 @@
|
|||
/** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
|
||||
const sidebars = {
|
||||
main: [
|
||||
"overview/what-is-waku",
|
||||
"overview/index",
|
||||
"overview/history",
|
||||
"overview/why-waku",
|
||||
"overview/use-cases",
|
||||
"overview/who-is-using-waku",
|
||||
"overview/clients",
|
||||
"overview/who-is-using-waku",
|
||||
{
|
||||
type: "category",
|
||||
label: "Waku Concepts",
|
||||
|
@ -35,7 +35,7 @@ const sidebars = {
|
|||
}
|
||||
],
|
||||
js: [
|
||||
"clients/js-waku/introduction"
|
||||
"clients/js-waku/index"
|
||||
]
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue