-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsidebars.js
More file actions
59 lines (57 loc) · 1.26 KB
/
sidebars.js
File metadata and controls
59 lines (57 loc) · 1.26 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
stake: [
"stake/overview",
"stake/wallets_guide",
"stake/bridge_guide",
"stake/staking_app_guide",
],
build: [
"build/overview",
"build/registration",
"build/balance",
"build/settings",
{
type: "category",
label: "CPU Cloud",
items: [
"build/cpu_cloud/overview",
"build/cpu_cloud/vm_rent",
"build/cpu_cloud/manage_vm",
],
},
{
type: "category",
label: "GPU Cloud",
items: [
"build/gpu_cloud/overview",
"build/gpu_cloud/instance_rent",
"build/gpu_cloud/manage_instances",
],
},
{
type: "category",
label: "API",
items: [
"build/api/overview",
"build/api/ssh_keys",
"build/api/cpu_cloud",
"build/api/gpu_cloud",
],
},
],
connect_servers: [
"connect_servers/overview",
"connect_servers/login",
"connect_servers/hardware",
"connect_servers/kubernetes",
"connect_servers/subnets",
"connect_servers/smart_contracts",
"connect_servers/upcoming_features",
],
build_with_ai: [
"build_with_ai/overview",
],
};
module.exports = sidebars;