-
-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathkarngyan.config.js
138 lines (137 loc) · 5.28 KB
/
karngyan.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// Upload files in static/ So any file static/file.pdf -> /file.pdf is accessible at root
export default {
name: 'gyan prakash karn',
domain: 'template.karngyan.com', // add without https:// , used in meta tags and share urls
image: '/images/bigheadkarngyan.png',
email: '[email protected]',
googleAnalyticsV4: {
enabled: false,
id: ''
},
plausibleAnalytics: {
enabled: true,
domain: 'template.karngyan.com',
trackLocalhost: false,
// leave it empty if plausible is not self hosted
apiHost: 'https://analytics.lookatx.dev' // default: https://plausible.io
},
// enable if you want comments and likes on posts
// see how it looks on karngyan.com
firebase: {
enabled: true
},
social: {
github: 'karngyan',
linkedin: 'karngyan',
facebook: 'karnsometimes',
twitter: 'gyankarn',
instagram: 'karngyan.dev',
codestats: 'karngyan' // https://codestats.net make a profile if you dont already have one.
},
buyMeACoffee: {
enabled: true,
url: 'https://www.buymeacoffee.com/karngyan'
},
projects: {
enabled: true,
},
blog: {
enabled: true,
},
resume: {
enabled: true,
pdfUrl: '/RESUME_GYAN_KARN_DARK.pdf' // add files in static folder
},
uses: {
enabled: true,
meta: [
{title: 'OS', value: 'macOS Catalina'},
{title: 'Memory', value: '16 GB 2667 MHz DDR4'},
{title: 'Keyboard', value: 'Keychron K2 - Gateron Brown Keys'},
{title: 'Mouse', value: 'Logitech Silent Pebble'},
{title: 'Monitor', value: 'LG QHD (2560 x 1440) 27 Inch IPS Display'},
{title: 'Laptop • Processor • Graphics', value: 'MacBook Pro (16-inch, 2019) • 2.6 GHz 6-Core Intel Core i7 • AMD Radeon Pro 5300M 4 GB + Intel UHD Graphics 630 1536 MB'}
]
},
workedAt: {
// add logos in static and at max add 3/4
enabled: true,
meta: [
{ name: 'SendPost', src: '/images/sendpost.png', url: 'https://sendpost.io' },
{ name: 'Amazon', src: '/images/amazon.png', url: 'https://amazon.in' },
{ name: 'InterviewReady', src: '/images/interviewready-io.png', url: 'https://get.interviewready.io' },
{ name: 'CrioDo', src: '/images/crio.png', url: 'https://crio.do' },
]
},
recommendations: {
enabled: true,
meta: [
{ name: 'Varun Jain', designation: 'Founder, SendX & SendPost', image: '/images/varun.jpeg', linkedin: 'https://www.linkedin.com/in/varun-jain-582b0215/', content: 'Gyan interned with SendX and SendPost for around 6 months. He is a very strong full-stack engineer who can create pixel perfect frontend while being able to work on backend pieces sending millions of emails per day. He is a quick learner, a great team player and, has a very strong work ethic. You can rely on him that things will be done with utmost quality. He also has pretty good product instincts and can think from the user\'s perspective.' },
{ name: 'Gaurav Sen', designation: 'Founder, InterviewReady', image: '/images/gaurav.jpeg', linkedin: 'https://www.linkedin.com/in/gkcs/', content: 'Karn is an extraordinarily talented, diligent and foresighted individual. He is gifted at building products from paper to code, and has a knack of finding efficient solutions to complex problems. In my experience, I have rarely seen such a mixture of talent and passion put together. At InterviewReady, Karn exceeded our expectations. If you are considering working with him: congratulations, you are going to have a great time!' },
]
},
loadingIndicator: {
name: 'pulse'
// https://tobiasahlin.com/spinkit/
// circle
// cube-grid
// fading-circle
// folding-cube
// chasing-dots
// nuxt
// pulse
// rectangle-bounce
// rotating-plane
// three-bounce
// wandering-cubes
},
laguageSwitcher: {
enabled: true,
},
strings: {
en_US: {
download: 'download',
nav: {
home: 'home',
blog: 'blog',
projects: 'projects',
uses: 'uses',
resume: 'résumé',
buyMeACoffee: 'buy me a beer',
signIn: 'sign in',
signOut: 'sign out'
},
hero: {
iBlogTech: 'i blog tech',
haveALook: 'have a look',
friendlyNeighborhood: 'your friendly neighborhood',
description: 'i am a software engineer and a part time freelancer. i blog tech, write a weekend newsletter called software shots, and tinker with side projects every now n then.',
words: ['developer', 'designer', 'engineer', 'programmer', 'encoder'],
},
githubCalendar: {
header: 'contributions',
subtext: 'github calendar heatmap'
},
blog: {
header: 'blog',
subtext: 'i try to write once in a while. let me know your thoughts in comments or [email protected]'
},
recentBlog: {
header: 'recent blogs',
subtext: 'it takes a lot of time to write man'
},
uses: {
header: 'uses',
subtext: 'a quick summary of what I use on a daily basis to code and some codestats.net flex'
},
projects: {
header: 'projects',
subtext: 'this page lists some of my personal and work projects. every project has some story, click on the title to read'
},
recommendations: {
header: 'recommendations',
subtext: 'what do my mentors say'
}
}
}
}