-
Notifications
You must be signed in to change notification settings - Fork 1
/
docusaurus.config.js
executable file
·106 lines (106 loc) · 2.6 KB
/
docusaurus.config.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
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
module.exports = {
title: 'Streetcred API Documentation',
tagline: 'SSI Resources for Developers',
url: 'https://streetcred-id.github.io',
baseUrl: '/',
favicon: 'img/streetcred_colorful.png',
organizationName: 'streetcred-id', // Usually your GitHub org/user name.
projectName: 'streetcred-docs', // Usually your repo name.
themeConfig: {
navbar: {
title: 'Streetcred ID',
logo: {
alt: 'SC',
src: 'img/streetcred_colorful.png',
},
links: [
{to: 'docs/getting-started', label: 'Docs', position: 'left'},
{to: 'docs/api', label: 'API', position: 'right'},
{
href: 'https://developer.streetcred.id',
label: 'Portal',
position: 'right',
},
{
href: 'https://streetcred.id/contact-us',
label: 'Support',
position: 'right',
}
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Getting Started',
to: 'docs/getting-started',
},
{
label: 'Connections',
to: 'docs/connections',
},
{
label: 'Credentials',
to: 'docs/credentials',
},
{
label: 'Verifications',
to: 'docs/verifications'
},
{
label: 'Webhooks',
to: 'docs/webhooks'
},
],
},
{
title: 'Community',
items: [
{
label: 'Open Source',
href: 'https://chat.hyperledger.org/channel/aries',
},
{
label: 'Website',
href: 'https://streetcred.id',
},
],
},
{
title: 'Social',
items: [
{
label: 'Blog',
to: 'https://medium.com/streetcred-id',
},
{
label: 'GitHub',
href: 'https://github.com/streetcred-id',
},
{
label: 'Twitter',
href: 'https://twitter.com/streetcred_id',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Streetcred ID, Inc.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};