-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsiteConfig.js
44 lines (33 loc) · 900 Bytes
/
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
const siteConfig = {
title: 'System Designer',
tagline: 'A low-code development platform for creating systems',
url: 'https://designfirst.io',
baseUrl: '../../',
projectName: '',
organizationName: '',
headerLinks: [{
languages: true
}],
headerIcon: 'img/logo.png',
footerIcon: 'img/logo.png',
favicon: 'img/favicon.ico',
translationRecruitingLink: 'https://crowdin.com/project/system-designer',
colors: {
primaryColor: '#f8f8f8',
secondaryColor: '#f8f8f8'
},
copyright: 'System Designer is distributed under Apache License 2.0 - Copyright © 2024 Erwan Carriou',
highlight: {
theme: 'zenburn',
themeUrl : '../../css/zenburn.css'
},
scripts: [
'../../js/links.js',
'../../js/clipboard.js',
'../../js/copy.js'
],
onPageNav: 'separate',
scrollToTop: true,
disableHeaderTitle: false
};
module.exports = siteConfig;