-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsiteConfig.js
57 lines (54 loc) · 1.43 KB
/
siteConfig.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
const users = require('./data/users');
const siteConfig = {
title: 'Quicksi',
tagline: 'Start new project easily',
url: 'https://quicksi-bot.now.sh/',
baseUrl: '/',
organizationName: 'Quicksi',
projectName: 'quicksi',
cname: 'quicksi-bot.now.sh',
noIndex: false,
users,
headerLinks: [
{doc: 'installation', label: 'Docs'},
{page: 'users', label: 'Contributors'},
{blog: true, label: 'Blog'},
{
href: 'https://github.com/AnayoOleru/quicksi',
label: 'GitHub',
},
],
headerIcon: 'img/quicksi.png',
// footerIcon: 'img/quicksi_monochrome.svg',
favicon: 'img/quicksi.png',
colors: {
primaryColor: '#D0582C',
secondaryColor: '#205C3B',
},
// translationRecruitingLink: 'https://crowdin.com/project/quicksi',
copyright: `Copyright © ${new Date().getFullYear()} Quicksi`,
usePrism: ['jsx'],
highlight: {
theme: 'atom-one-dark',
},
scripts: [
'https://buttons.github.io/buttons.js',
'https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js',
'/js/code-blocks-buttons.js',
],
facebookComments: true,
twitter: 'true',
twitterUsername: 'AnayoOleru',
ogImage: 'img/quicksi.png',
twitterImage: 'img/quicksi.png',
onPageNav: 'separate',
cleanUrl: true,
scrollToTop: true,
scrollToTopOptions: {
zIndex: 100,
},
enableUpdateTime: false,
enableUpdateBy: false,
docsSideNavCollapsible: true,
};
module.exports = siteConfig;