forked from Sivanesh-S/portfolio-minimal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
44 lines (44 loc) · 1.27 KB
/
data.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
const main = {
name: 'Marcos Gonzalez',
mail: '[email protected]',
img: 'https://avatars3.githubusercontent.com/u/16511853?s=460&u=8917882e15496ba2a8163e251e1a34cfaf2688b3&v=4',
role: ['Full Stack Developer'],
// Refer https://ionicons.com/ and put the icon name inside iconName key
connects: [
{
name: 'Facebook',
iconName: 'logo-facebook',
link: 'https://www.facebook.com/marcosxdeveloper'
},
{
name: 'Instagram',
iconName: 'logo-instagram',
link: 'https://www.instagram.com/marcosxdeveloper'
},
{
name: 'Linkedin',
iconName: 'logo-linkedin',
link: 'https://www.linkedin.com/in/marcosxdeveloper'
},
{
name: 'Twitter',
iconName: 'logo-twitter',
link: 'https://twitter.com/marcosxgonzalez'
},
{
name: 'Github',
iconName: 'logo-github',
link: 'https://github.com/marcosxdeveloper'
},
{
name: 'Mail',
iconName: 'mail-outline',
link: `mailto:${'[email protected]'}?Subject=Hello%20again`
}
],
links: [
{ name: 'Blog', link: 'https://medium.com/@marcosxdeveloper' },
{ name: 'Projects', link: 'https://codepen.io/marcosxdeveloper' },
{ name: 'Resume', link: 'https://marcosxdeveloper.github.io/LinkTree/' }
]
};