-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
37 lines (37 loc) · 1.03 KB
/
data.js
File metadata and controls
37 lines (37 loc) · 1.03 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
const main = {
name: 'Jitendra Tripathi',
mail: 'jiitendra.tripathi@gmail.com',
// about: "Hey, I'm Jitendra Tripathi. A Software Engineer and amateur photographer.",
role: ['Backend Developer'],
connects: [
{
name: 'Github',
iconName: 'logo-github',
link: 'https://github.com/callowidealist'
},
{
name: 'Linkedin',
iconName: 'logo-linkedin',
link: 'https://www.linkedin.com/in/callowidealist/'
},
{
name: 'StackOverflow',
iconName: 'logo-stackoverflow',
link: 'https://stackoverflow.com/users/7231923/jitendra-kumar-tripathi'
},
{
name: 'Twitter',
iconName: 'logo-twitter',
link: 'https://twitter.com/jitendrat0'
},
{
name: 'Mail',
iconName: 'mail-outline',
link: `mailto:${'jiitendra.tripathi@gmail.com'}?Subject=Hello%20again`
}
],
links: [
{ name: 'Blogs', link: 'https://jitendrat.hashnode.dev' },
{ name: 'Resume', link: 'https://drive.google.com/file/d/1ZSvm1Ax3g5GGfYunLUDLw-IKtGI3GtHP/view'}
]
};