forked from junobuild/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.ts
76 lines (74 loc) · 1.83 KB
/
sidebars.ts
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
docs: [
"intro",
"create-a-satellite",
"setup-the-sdk",
{
type: "category",
label: "Guides and Examples",
link: {
type: "generated-index",
description:
"Start building with your preferred technologies. Explore our quick start guides and tutorials, designed to assist you in hosting and developing web dapps using your favorite frameworks."
},
items: [
{
type: "autogenerated",
dirName: "guides"
}
]
},
{
type: "category",
label: "Build",
link: {
type: "generated-index",
description:
"Learn about Juno features to build apps running 100% on blockchain without the need to manage servers or write any backend code."
},
items: [
{
type: "autogenerated",
dirName: "build"
}
]
},
{
type: "category",
label: "Miscellaneous",
link: {
type: "generated-index"
},
items: [
{
type: "autogenerated",
dirName: "miscellaneous"
}
]
},
"terminology",
"faq",
"troubleshooting",
"pricing"
],
["white-paper"]: [
"white-paper/intro",
"white-paper/what-is-juno",
"white-paper/problems-statement",
"white-paper/solution",
"white-paper/use-cases",
"white-paper/roadmap",
"white-paper/architecture",
"white-paper/infrastructure",
"white-paper/open-source",
"white-paper/business-model",
"white-paper/competitors",
"white-paper/costs-challenges",
"white-paper/validation",
"white-paper/target-audience",
"white-paper/market-size",
"white-paper/conclusion"
]
};
export default sidebars;