forked from rolwin100/rolwinreevan_gatsby_blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
79 lines (79 loc) · 2.34 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
70
71
72
73
74
75
76
77
78
79
module.exports = {
pathPrefix: '',
siteUrl: 'https://antoniorodriguez.org',
siteTitle: 'Antonio Rodriguez',
siteDescription: 'Personal Portfolio',
author: 'Antonio Rodriguez',
postsForArchivePage: 3,
defaultLanguage: 'en',
disqusScript:
process.env.DISQUS_SCRIPT
|| 'https://antoniorodriguez-org.disqus.com/embed.js',
pages: {
home: '/',
blog: 'blog',
contact: 'contact',
resume: 'resume',
tag: 'tags',
},
social: {
github: 'https://github.com/antoniordz96',
facebook: 'https://www.facebook.com/ajr80231',
linkedin: 'https://www.linkedin.com/in/antoniordz96/',
instagram: 'https://www.instagram.com/tony_rodriguez9610/',
},
contactFormUrl:
process.env.CONTACT_FORM_ENDPOINT
|| 'https://getform.io/f/d6320840-b1f0-4d4a-8173-51307e992e41',
googleAnalyticTrackingId: process.env.GA_TRACKING_ID || '',
tags: {
javascript: {
name: 'javascript',
description:
'JavaScript is andsdsds 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',
},
},
};