-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsidebars.ts
More file actions
94 lines (89 loc) · 2.44 KB
/
sidebars.ts
File metadata and controls
94 lines (89 loc) · 2.44 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
// By default, Docusaurus generates a sidebar from the docs folder structure
docs: [
{ type: "doc", id: "introduction/why-ceramic", label: "Why Ceramic?" },
{
type: "category",
collapsed: false,
label: "Overview",
link: {
type: "doc",
id: "introduction/intro"
},
items: [
{ type: "doc", id: "introduction/protocol-overview", label: "Ceramic Protocol" },
{ type: "doc", id: "introduction/did-overview", label: "Decentralized Identifiers" }
]
},
{ type: "doc", id: "introduction/technical-reqs", label: "Technical Requirements" }
],
ceramicOne: [
{
type: "doc",
id: "protocol/ceramic-one/README",
label: "Getting Started"
},
{
type: "doc",
id: "protocol/ceramic-one/concepts",
label: "Concepts"
},
{
type: "category",
collapsed: false,
label: "Usage",
items: [
"protocol/ceramic-one/usage/installation",
"protocol/ceramic-one/usage/produce",
"protocol/ceramic-one/usage/consume",
"protocol/ceramic-one/usage/query"
]
},
{
type: "category",
collapsed: false,
label: "Self-Anchoring",
items: [
"protocol/ceramic-one/anchoring/overview",
"protocol/ceramic-one/anchoring/evm-configuration"
]
}
],
dids: [
{ type: "doc", id: "dids/introduction", label: "Introduction" },
{
type: "category",
collapsed: true,
label: "Getting Started",
items: ["dids/installation", "dids/authorization", "dids/configuration", "dids/managing-sessions"]
},
{
type: "category",
collapsed: true,
label: "Guides",
items: [
"dids/guides/concepts-overview",
"dids/guides/add-chain-support",
"dids/guides/upgrading-did-session"
]
},
{ type: "link", label: "DIDs API", href: "https://did.js.org/docs/api/modules/dids" }
],
ecosystem: [
{
type: "doc",
id: "ecosystem/community",
label: "Overview"
}
]
};
export default sidebars;