forked from anitab-org/mentorship-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
77 lines (77 loc) · 2.97 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
module.exports = {
title: "Mentorship-Backend",
tagline: "Documentation for Mentorship Backend",
url: "https://anitab-org.github.io",
baseUrl: "/mentorship-backend/",
onBrokenLinks: "throw",
favicon: "img/favicon.png",
organizationName: "anitab-org",
projectName: "mentorship-backend",
themeConfig: {
announcementBar: {
id: 'support_us',
content:
'⭐️ If you like Mentorship-Backend, give it a star on <a href="https://github.com/anitab-org/mentorship-backend" rel="noopener noreferrer" target="_blank">GitHub!</a> ⭐️',
backgroundColor: '#fafbfc',
textColor: '#091E42',
},
colorMode: {
defaultMode: "light",
},
navbar: {
title: "Mentorship-Backend Docs",
hideOnScroll: true,
logo: {
alt: "AnitaB.org Logo",
src: "img/logo.png",
},
items: [
{
href: "https://anitab.org/",
label: "AnitaB.org",
position: "right",
},
{
href: "https://anitab-org.zulipchat.com/#narrow/stream/222534-mentorship-system",
label: "Zulip",
position: "right",
},
{
href: "https://github.com/anitab-org/mentorship-backend",
label: "GitHub",
position: "right",
},
],
},
footer: {
style: "dark",
copyright: `
<div>
<a href="https://www.facebook.com/AnitaB.0rg/" rel="noopener noreferrer" target="_blank"><i id="social-fb" class="fa fa-facebook-square fa-3x social"></i></a>
<a href="https://twitter.com/anitab_org" rel="noopener noreferrer" target="_blank"><i id="social-tw" class="fa fa-twitter-square fa-3x social"></i></a>
<a href="https://www.linkedin.com/company/anitab-org/" rel="noopener noreferrer" target="_blank"><i id="fa fa-linkedin-square fa-3x social" class="fa fa-linkedin-square fa-3x social"></i></a>
<a href="https://www.instagram.com/anitab_org/" rel="noopener noreferrer" target="_blank"><i id="fa fa-instagram-square fa-2x social" class="fa fa-instagram fa-3x social"></i></a>
<a href="https://medium.com/anitab-org-open-source" rel="noopener noreferrer" target="_blank"><i id="fa fa-medium" class="fa fa-medium fa-3x social"></i></a>
<a href="https://github.com/anitab-org/mentorship-backend" rel="noopener noreferrer" target="_blank"><i id="fa fa-github" class="fa fa-github fa-3x social"></i></a>
</div>
<b>Copyright © ${new Date().getFullYear()} AnitaB.org</b>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
`,
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
editUrl:
"https://github.com/anitab-org/mentorship-backend/tree/develop/docs",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};