File tree Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -23,26 +23,42 @@ let icons = [
23
23
{
24
24
name: ' projects' ,
25
25
icon: ' ph:code' ,
26
+ size: 32 ,
26
27
},
27
28
{
28
29
name: ' linkedin' ,
29
30
icon: ' ph:linkedin-logo' ,
31
+ size: 32 ,
30
32
},
31
33
{
32
34
name: ' github' ,
33
35
icon: ' icon-park:github-one' ,
36
+ size: 32 ,
34
37
},
35
38
{
36
39
name: ' figma' ,
37
40
icon: ' ph:figma-logo' ,
41
+ size: 32 ,
38
42
},
39
43
{
40
44
name: ' instagram' ,
41
45
icon: ' ph:instagram-logo' ,
46
+ size: 32 ,
42
47
},
43
48
{
44
49
name: ' homepage' ,
45
- icon: ' ph:address-book' ,
50
+ icon: ' ph:identification-badge' ,
51
+ size: 32 ,
52
+ // icon: 'ph:address-book',
53
+ },
54
+ {
55
+ name: ' researchgate' ,
56
+ icon: ' la:researchgate' ,
57
+ size: 36 ,
58
+ // icon: 'simple-icons:researchgate',
59
+ // icon: 'ph:graduation-cap',
60
+ // icon: 'ph:student',
61
+ // icon: 'ph:flask',
46
62
},
47
63
];
48
64
@@ -99,11 +115,11 @@ const tags = await getPersonTags(person);
99
115
<a
100
116
href = { link .url }
101
117
target = " _blank"
102
- class = " hover:scale-110 transition duration-500"
118
+ class = " hover:scale-110 transition duration-500 flex items-center justify-center "
103
119
>
104
120
<Icon
105
121
name = { link .icon }
106
- size = { 32 }
122
+ size = { link . size }
107
123
class = { ` ${link .name }-person-link ` }
108
124
/>
109
125
</a >
Original file line number Diff line number Diff line change @@ -58,6 +58,8 @@ const addresses = z.object({
58
58
stackoverflow : z . string ( ) . url ( ) . optional ( ) ,
59
59
lattes : z . string ( ) . url ( ) . optional ( ) ,
60
60
researchgate : z . string ( ) . url ( ) . optional ( ) ,
61
+ orcid : z . string ( ) . url ( ) . optional ( ) ,
62
+ googleScholar : z . string ( ) . url ( ) . optional ( ) ,
61
63
instagram : z . string ( ) . url ( ) . optional ( ) ,
62
64
tiktok : z . string ( ) . url ( ) . optional ( ) ,
63
65
youtube : z . string ( ) . url ( ) . optional ( ) ,
You can’t perform that action at this time.
0 commit comments