-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathconfig.js
69 lines (68 loc) · 2.25 KB
/
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
module.exports = {
pathPrefix: '',
siteUrl: 'https://rolwinreevan.com',
siteTitle: 'Rolwin Reevan',
siteDescription: 'Logbook of a software developer',
author: 'Rolwin Reevan',
postsForArchivePage: 3,
defaultLanguage: 'en',
disqusScript: process.env.DISQUS_SCRIPT || 'https://rolwinreevan.disqus.com/embed.js',
pages: {
home: '/',
blog: 'blog',
contact: 'contact',
resume: 'resume',
tag: 'tags',
},
social: {
github: 'https://github.com/rolwin100',
facebook: 'https://www.facebook.com/rolwin.monteiro',
twitter: 'https://twitter.com/rolwin100',
instagram: 'https://www.instagram.com/reevan100/',
rss: '/rss.xml',
},
contactFormUrl: process.env.CONTACT_FORM_ENDPOINT || 'https://getform.io/f/09a3066f-c638-40db-ad59-05e4ed71e451',
googleAnalyticTrackingId: process.env.GA_TRACKING_ID || '',
tags: {
javascript: {
name: 'javascript',
description: 'JavaScript is an object-oriented programming language used alongside HTML and CSS to give functionality to web pages.',
color: '#f0da50',
},
nodejs: {
name: 'Node.js',
description: 'Node.js is a tool for executing JavaScript in a variety of environments.',
color: '#90c53f',
},
typescript: {
name: 'typescript',
description: 'TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.',
color: '#257acc',
},
reactjs: {
name: 'reactjs',
description: 'React is an open source JavaScript library used for designing user interfaces.',
color: '#61dbfa',
},
gatsby: {
name: 'Gatsby.js',
description: 'A framework built over ReactJS to generate static page web application. ',
color: '#6f309f',
},
html: {
name: 'HTML',
description: 'A markup language that powers the web. All websites use HTML for structuring the content.',
color: '#dd3431',
},
css: {
name: 'css',
description: 'CSS is used to style the HTML element and to give a very fancy look for the web application.',
color: '#43ace0',
},
python: {
name: 'python',
description: 'A general purpose programming language that is widely used for developing various applications.',
color: '#f9c646',
},
},
};