forked from valuedefi/valuedefi-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
104 lines (103 loc) · 2.45 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
module.exports = {
title: "Value DeFi Protocol",
tagline: "Value DeFi",
url: "https://docs.valuedefi.io/",
baseUrl: "/",
onBrokenLinks: "warn",
onBrokenMarkdownLinks: "warn",
favicon: "img/logo.png",
organizationName: "Value DeFi", // Usually your GitHub org/user name.
projectName: "Value DeFi Protocol", // Usually your repo name.
themeConfig: {
sidebarCollapsible: false,
navbar: {
title: "Value DeFi Protocol",
logo: {
alt: "Value DeFi Protocol",
src: "img/logo.png",
},
items: [
{
href: "https://valuedefi.io/",
label: "Home",
position: "left",
},
{
href: "https://valuedefi.io/value-vaults",
label: "Value Vaults",
position: "left",
},
{
href: "https://valueliquid.io/",
label: "Value Liquid",
position: "left",
},
{
href: "mailto:contact@valuedefi.io",
label: "Contact",
position: "left",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Community",
items: [
{
label: "Medium",
href: "https://valuedefi.medium.com/",
},
{
label: "GitHub",
href: "https://github.com/valuedefi",
},
],
},
{
title: "Community",
items: [
{
label: "Governance Forum",
href: "https://gov.valuedefi.io/",
},
{
label: "Twitter",
href: "https://twitter.com/value_defi",
},
],
},
{
title: "More",
items: [
{
label: "Discord",
href: "https://discord.gg/Dpvd7tp",
},
{
label: "Telegram",
href: "https://t.me/ValueDeFi",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Value DeFi Protocol, Inc. Built with Docusaurus.`,
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
routeBasePath: "/",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};