-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsidebars.ts
194 lines (187 loc) · 4.93 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
/**
* 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.
*/
const sidebars: SidebarsConfig = {
// By default, Docusaurus generates a sidebar from the docs folder structure
// tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
docs: [
{
type: 'html',
value: '<span class="sidebar-heading first">Welcome</span>',
},
'introduction',
'getting-started',
{
type: 'html',
value: '<span class="sidebar-heading">Learn</span>',
},
{
type: 'category',
label: 'Architecture',
link: {
type: 'doc',
id: 'architecture/README',
},
items: [
'architecture/dkim-verification',
'architecture/zk-proofs',
'architecture/on-chain',
'architecture/security-considerations',
],
},
{
type: 'html',
value: '<span class="sidebar-heading">Blueprint SDK</span>',
},
'zk-email-sdk/README',
'zk-email-sdk/setup',
{
type: 'category',
label: 'Registry',
link: {
type: 'doc',
id: 'zk-email-sdk/registry',
},
items: [
'zk-email-sdk/regex',
{
type: 'category',
label: 'Creating Blueprint',
link: {
type: 'doc',
id: 'zk-email-sdk/create-blueprint',
},
items: [
'zk-email-sdk/get-eml-file',
'zk-email-sdk/proof-of-luma',
],
}
],
},
{
type: 'category',
label: 'Blueprint SDK v1',
items: [
'zk-email-sdk/overview-v1',
'zk-email-sdk/running-the-example',
'zk-email-sdk/creating-a-new-pattern',
],
},
{
type: 'html',
value: '<span class="sidebar-heading">ZK Email Verifier</span>',
},
'zk-email-verifier/README',
'zk-email-verifier/setup',
'zk-email-verifier/usage-guide',
{
type: 'category',
label: 'Packages',
link: {
type: 'doc',
id: 'zk-email-verifier/packages/README',
},
items: [
'zk-email-verifier/packages/zk-email-circuits',
'zk-email-verifier/packages/zk-email-helpers',
'zk-email-verifier/packages/zk-email-contracts'
],
},
{
type: 'html',
value: '<span class="sidebar-heading">Email Wallet</span>',
},
'email-wallet/README',
'email-wallet/circuit-architecture',
'email-wallet/contract-architecture',
'email-wallet/relayer-infrastructure',
'email-wallet/email-wallet-extensions-sdk',
'email-wallet/deployed-contract-addresses',
'email-wallet/api-documentation',
{
type: 'html',
value: '<span class="sidebar-heading">Account Recovery</span>',
},
'account-recovery/README',
'account-recovery/architecture',
{
type: 'category',
label: 'Setup',
link: {
type: 'doc',
id: 'account-recovery/setup',
},
items: [
'account-recovery/permissionless-guide',
'account-recovery/module-sdk-guide',
],
},
'account-recovery/relayer-api/README',
'account-recovery/deployed-contracts',
{
type: 'html',
value: '<span class="sidebar-heading">Email Transaction Builder</span>',
},
'email-tx-builder/README',
'email-tx-builder/quickstart',
'email-tx-builder/setup',
{
type: 'category',
label: 'Architecture',
link: {
type: 'doc',
id: 'email-tx-builder/architecture/README'
},
items: [
'email-tx-builder/architecture/concepts',
'email-tx-builder/architecture/package-components',
'email-tx-builder/architecture/generic-relayer',
'email-tx-builder/architecture/command-templates',
],
},
'email-tx-builder/api-reference',
{
type: 'html',
value: '<span class="sidebar-heading">JWT Transaction Builder</span>',
},
'jwt-tx-builder/README',
'jwt-tx-builder/setup',
'jwt-tx-builder/architecture',
{
type: 'category',
label: 'Packages',
link: {
type: 'doc',
id: 'jwt-tx-builder/packages/README',
},
items: [
'jwt-tx-builder/packages/circuits',
'jwt-tx-builder/packages/helpers',
'jwt-tx-builder/packages/contracts',
],
},
'jwt-tx-builder/contracts',
{
type: 'html',
value: '<span class="sidebar-heading">Additional Resources</span>',
},
{
type: 'link',
label: 'Projects using ZK Email',
href: 'https://zk.email/projects',
},
'login-with-zk-email-oauth-api',
'audits',
'zk-regex',
'frequently-asked-questions',
'contributing',
],
};
export default sidebars;