forked from open-feature/community
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus-sidebar.js
More file actions
64 lines (61 loc) · 1.03 KB
/
docusaurus-sidebar.js
File metadata and controls
64 lines (61 loc) · 1.03 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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebarCommunity = {
community: [
{
type: "doc",
id: "README",
label: "Overview",
},
{
type: "doc",
id: "mission-vision",
},
{
type: "doc",
id: "CONTRIBUTOR_LADDER",
},
{
type: "doc",
id: "community-members",
label: "Members",
},
{
type: "category",
label: "Charters",
collapsible: false,
items: [
{
type: "doc",
id: "governance-charter",
},
{
type: "doc",
id: "tech-committee-charter",
},
],
},
{
type: "doc",
id: "interested-parties",
},
{
type: "doc",
id: "ADOPTERS",
label: "Adopters",
},
{
type: "doc",
id: "presentations",
},
{
type: "doc",
id: "branding-guidelines",
},
{
type: "doc",
id: "SECURITY",
},
],
};
module.exports = sidebarCommunity;