-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext.js
More file actions
42 lines (41 loc) · 1.12 KB
/
Copy pathcontext.js
File metadata and controls
42 lines (41 loc) · 1.12 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
module.exports = {
firstName: 'Amitosh',
lastName: 'Swain Mahapatra',
title: 'Computer Whisperer',
role: '<T> Engineer',
company: 'CodeRabbit',
location: 'Bangalore, India',
email: 'amitosh@recrsn.com',
links: [
{
name: 'twitter',
url: 'https://twitter.com/recrsn',
label: 'Follow on Twitter'
},
{
name: 'linkedin',
url: 'https://www.linkedin.com/in/amitosh-swain/',
label: 'Connect on LinkedIn'
},
{
name: 'github',
url: 'https://github.com/recrsn',
label: 'View GitHub'
},
{
name: 'medium',
url: 'https://amitosh.medium.com',
label: 'Check out Medium'
},
{
name: 'newsletter',
url: 'https://recursivefunction.blog',
label: 'Read my newsletter'
},
],
tracking: {
// If you want to add Google Analytics, just add the tracking ID here
googleAnalytics: 'G-8937NR279Q',
},
production: process.env.NODE_ENV === 'production',
}