-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathconfig.js
More file actions
44 lines (43 loc) · 1.01 KB
/
Copy pathconfig.js
File metadata and controls
44 lines (43 loc) · 1.01 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
const config = {
drawerWidth: '22vh',
site: {
title: {
full: 'Code Smells Catalog',
short: 'Smells Catalog',
alt: 'Smells Catalog',
letterer: 'CSC',
},
logo: '/logos/logo-1024.png',
description: 'A collection of Bad Code Smells in a Catalog form for Developers & Researchers. Code Smell is a typical bad code implementation, and learning these concepts immediately makes you a better developer!',
url: {
path: 'http://luzkan.github.io',
prefix: '/smells',
},
rss: {
path: '/rss.xml',
},
apps: {
googleAnalyticsID: 'G-GVXFN1P3JV',
},
copyright: 'Copyright © 2022 Marcel Jerzyk. All rights reserved.',
},
formatting: {
date: {
from: 'YYYY-MM-DD',
to: 'DD/MM/YYYY'
}
},
user: {
name: 'Marcel Jerzyk',
email: '244979@student.pwr.edu.pl',
twitter: 'Luzkan',
github: 'Luzkan',
},
theme: {
color: {
primary: '#000000',
background: '#e2e2e2'
}
}
};
module.exports = config