-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
108 lines (108 loc) · 2.62 KB
/
docusaurus.config.js
File metadata and controls
108 lines (108 loc) · 2.62 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
module.exports = {
title: 'AraCred',
tagline: 'Aragon + SourceCred',
url: 'https://aracred.github.io',
baseUrl: '/website/',
favicon: 'img/favicon.ico',
organizationName: 'aracred', // Usually your GitHub org/user name.
projectName: 'website', // Usually your repo name.
stylesheets: [
"https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;600&display=swap",
"/css/code-block-buttons.css"
],
themes: ['@docusaurus/theme-live-codeblock'],
themeConfig: {
navbar: {
title: 'AraCred',
logo: {
alt: 'AraCred Logo',
src: 'img/logo.png',
},
links: [
{
to: 'docs/aracred',
activeBasePath: 'docs',
label: 'Docs',
position: 'left',
},
{to: 'blog', label: 'Blog', position: 'left'},
{
href: 'https://github.com/aracred/aracred',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Info',
items: [
{
label: '🗺️ Overview',
to: 'docs/aracred',
},
{
label: '💸 Tokeneconomics',
to: 'docs/designGoals',
},
{
label: '🚀 Deployment',
to: 'docs/deploymentOverview',
},
],
},
{
title: 'Contribute',
items: [
{
label: '💡 Share Ideas',
href: 'https://discord.gg/nG4Ew2Y',
},
{
label: '💻 Lay Down Code',
href: 'https://github.com/aracred',
},
{
label: '🦅 Engage in Governance',
href: 'https://mainnet.aragon.org/#/aracredcore/',
},
],
},
{
title: 'Friends & Family',
items: [
{
label: '🦅 Aragon',
href: 'https://aragon.org/',
},
{
label: '🌱 SourceCred',
href: 'https://sourcecred.io/',
},
{
label: '🐙 MetaGame',
href: 'https://metagame.wtf/',
}
],
},
],
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/aracred/website/edit/master/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};