-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsidebars.ts
More file actions
41 lines (39 loc) · 1.47 KB
/
sidebars.ts
File metadata and controls
41 lines (39 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
import apiSidebarModule from "./docs/rpc/sidebar";
const sidebars: SidebarsConfig = {
sidebar: [
{ type: "doc", id: "index" },
{ type: "doc", id: "files" },
{ type: "doc", id: "config" },
{
type: "category",
label: "RPC",
items: [{ type: "doc", id: "rpc-setup" }, ...apiSidebarModule.slice(1)],
},
{
type: "category",
label: "Wallet SDK",
items: [
{ type: "doc", id: "sdk/index", label: "Quick Start" },
{ type: "doc", id: "sdk/spend-context", label: "SpendContext" },
{ type: "doc", id: "sdk/actions", label: "Action System" },
{ type: "doc", id: "sdk/connectivity", label: "Connectivity" },
{
type: "category",
label: "Primitives",
items: [
{ type: "doc", id: "sdk/primitives/standard", label: "Standard (XCH)" },
{ type: "doc", id: "sdk/primitives/cat", label: "CAT" },
{ type: "doc", id: "sdk/primitives/nft", label: "NFT" },
{ type: "doc", id: "sdk/primitives/other", label: "Other Primitives" },
],
},
{ type: "doc", id: "sdk/offers", label: "Offers" },
{ type: "doc", id: "sdk/testing", label: "Testing" },
{ type: "doc", id: "sdk/patterns", label: "Application Patterns" },
{ type: "doc", id: "sdk/troubleshooting", label: "Troubleshooting" },
],
},
],
};
export default sidebars;