-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsidebars.ts
More file actions
112 lines (106 loc) · 2.23 KB
/
sidebars.ts
File metadata and controls
112 lines (106 loc) · 2.23 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
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/frontend',
label: 'Frontend',
},
{
type: 'doc',
id: 'quickstart/backend',
label: 'Backend',
},
],
},
{
type: 'category',
label: 'Libraries',
link: { type: 'doc', id: 'libraries/index' },
items: [
{
type: 'doc',
id: 'libraries/typescript',
label: 'TypeScript',
},
{
type: 'doc',
id: 'libraries/rust',
label: 'Rust',
},
{
type: 'doc',
id: 'libraries/python',
label: 'Python',
},
{
type: 'doc',
id: 'libraries/go',
label: 'Go',
},
],
},
{
type: 'category',
label: 'Integrations',
link: { type: 'doc', id: 'integrations/index' },
items: [
'integrations/discourse',
'integrations/auth0',
],
},
{
type: 'category',
label: 'OIDC Provider',
link: { type: 'doc', id: 'oidc-provider/index' },
items: [
'oidc-provider/api-reference',
'oidc-provider/deployment-guide',
'oidc-provider/client-setup',
{
type: 'link',
label: 'Provider GitHub',
href: 'https://github.com/signinwithethereum/oidc-provider',
className: 'text-accent hover:text-white transition-colors font-medium group',
},
{
type: 'link',
label: 'Client GitHub',
href: 'https://github.com/signinwithethereum/oidc-client',
className: 'text-accent hover:text-white transition-colors font-medium group',
},
],
},
{
type: 'category',
label: 'Message Validator',
link: { type: 'doc', id: 'validator/index' },
items: [
'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