-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
140 lines (134 loc) · 3.24 KB
/
sidebars.ts
File metadata and controls
140 lines (134 loc) · 3.24 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
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
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs'
const sidebars: SidebarsConfig = {
tutorialSidebar: [
{
type: 'doc',
id: 'index',
label: 'Introduction',
},
{
type: 'category',
label: 'Quickstart Guide',
link: { type: 'doc', id: 'quickstart/index' },
items: [
{
type: 'doc',
id: 'quickstart/creating-messages',
label: 'Creating a SIWE Message',
},
{
type: 'doc',
id: 'quickstart/frontend-setup',
label: 'Frontend Setup',
},
{
type: 'doc',
id: 'quickstart/backend-verification',
label: 'Backend Verification',
},
{
type: 'doc',
id: 'quickstart/connect-the-frontend',
label: 'Connect the Frontend',
},
{
type: 'doc',
id: 'quickstart/implement-sessions',
label: 'Implement Sessions',
},
],
},
{
type: 'category',
label: 'Libraries',
collapsed: false,
link: { type: 'doc', id: 'libraries/index' },
items: [
{
type: 'category',
label: 'TypeScript',
link: { type: 'doc', id: 'libraries/typescript' },
items: [
'libraries/typescript/migrating-to-v2',
'libraries/typescript/typescript-quickstart',
],
},
'libraries/rust',
'libraries/elixir',
'libraries/python',
{
type: 'category',
label: 'Ruby',
link: { type: 'doc', id: 'libraries/ruby' },
items: ['libraries/ruby/rails'],
},
'libraries/go',
'libraries/ethereum-idetntiy-kit',
],
},
{
type: 'category',
label: 'Integrations',
link: { type: 'doc', id: 'integrations/index' },
items: [
'integrations/discourse',
'integrations/nextauth.js',
'integrations/auth0',
],
},
{
type: 'category',
label: 'Onchain Data',
collapsed: false,
link: { type: 'doc', id: 'quickstart/retrieve-onchain-data' },
items: [
'quickstart/resolve-ens-profiles',
'quickstart/resolve-efp-data',
'quickstart/resolve-onchain-holdings',
],
},
{
type: 'category',
label: 'OIDC Provider',
link: { type: 'doc', id: 'oidc-provider/index' },
items: [
'oidc-provider/deployment-guide',
'oidc-provider/hosted-provider',
{
type: 'link',
label: 'SIWE OIDC Connector',
href: 'https://github.com/signinwithethereum/siwe-oidc',
className: 'text-accent hover:text-white transition-colors font-medium group',
},
{
type: 'link',
label: 'SIWE OIDC Demo',
href: 'https://oidc-demo.siwe.xyz/',
className: 'text-accent hover:text-white transition-colors font-medium group',
}
],
},
{
type: 'category',
label: 'Message Validator',
link: { type: 'doc', id: 'validator/index' },
items: [
'validator/index',
'validator/validator-guide',
],
},
'security-considerations',
{
type: 'link',
label: 'EIP-4361 Specification',
href: 'https://eips.ethereum.org/EIPS/eip-4361',
className: 'text-accent hover:text-white transition-colors font-medium group',
},
{
type: 'doc',
id: 'media-kit',
label: 'Media Kit',
}
],
}
export default sidebars