We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c31baa8 commit cec4692Copy full SHA for cec4692
components/containers/Member.js
@@ -42,7 +42,13 @@ export default function Member({
42
height='25px'
43
width='25px'
44
/>
45
- <Link href={`https://linkedin.com/in/${linkedIn}`}>{linkedIn}</Link>
+ <Link
46
+ href={`https://linkedin.com/in/${linkedIn}`}
47
+ target='_blank'
48
+ rel='noopener noreferrer'
49
+ >
50
+ {linkedIn}
51
+ </Link>
52
</div>
53
)}
54
{portfolio && (
@@ -53,7 +59,13 @@ export default function Member({
59
60
55
61
56
- <Link href={`https://${portfolio}`}>{portfolio}</Link>
62
63
+ href={`https://${portfolio}`}
64
65
66
67
+ {portfolio}
68
57
69
58
70
71
0 commit comments