This repository has been archived by the owner on Jan 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsidebars.js
80 lines (80 loc) · 1.86 KB
/
sidebars.js
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
// Docs: https://docusaurus.io/docs/sidebar
module.exports = {
mySidebar: [
"index",
{
type: "category",
label: "Features",
items: ["instant-apps/overview", "profiles/overview"],
collapsed: false,
},
{
type: "category",
label: "Instant Apps",
collapsed: false,
items: [
"instant-apps/getting-started",
"instant-apps/architecture",
"instant-apps/marketplace",
],
},
{
type: "category",
label: "Company",
collapsed: false,
items: [
"company/about-us",
"company/vision",
"company/mission",
"company/careers",
],
},
{
type: "category",
label: "Events",
collapsed: false,
items: ["events/hackathon"],
},
{
type: "category",
label: "Team Docs",
items: [
"team-documentation",
"team-docs/tutorials",
{
type: "category",
label: "Decisions",
items: [
"decisions/public_documentation",
"decisions/supertokens_for_auth",
"decisions/styled_components_for_css",
],
},
{
type: "category",
label: "Processes",
items: ["processes/weekly-review", "processes/weekly-releases"],
},
{
type: "category",
label: "RFCs",
items: ["rfcs/snippet_apps"],
},
{
type: "category",
label: "felvin.com",
items: [
"team-docs/felvin.com/overview",
"team-docs/felvin.com/release-flow",
"team-docs/felvin.com/deployment-runbook",
],
},
{
type: "category",
label: "Incident Reports",
items: ["incident-reports/2021-08-13-localstorage-schema-error"],
},
],
},
],
};