File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,18 @@ export default function ContributorCard({ data }: { data: Card }) {
34
34
className = "rounded-full border"
35
35
/>
36
36
< div className = "mb-2 flex gap-12 text-2xl" >
37
- < Link href = { data . html_url } target = "_blank" className = "duration-150 hover:text-[#411AFF]" >
37
+ < Link href = { data . html_url } target = "_blank"
38
+ aria-label = "GitHub Profile"
39
+ title = "GitHub (External Link)"
40
+ rel = "noopener noreferrer" className = "duration-150 hover:text-[#411AFF]" >
38
41
< FaGithub />
39
42
</ Link >
40
43
< Link
41
44
href = { `https://github.com/WebXDAO/WebXDAO.github.io/commits?author=${ data . login } ` }
42
45
target = "_blank"
46
+ aria-label = "Visit Code Contributions"
47
+ title = "Code Contributions (External Link)"
48
+ rel = "noopener noreferrer"
43
49
className = "duration-150 hover:text-[#411AFF]"
44
50
>
45
51
< FaLaptopCode />
Original file line number Diff line number Diff line change @@ -21,21 +21,30 @@ const TeamCard = ({
21
21
< h1 className = "my-1 text-center" > { Name } </ h1 >
22
22
< h2 className = "my-1 text-center" > { position } </ h2 >
23
23
< div className = "my-6 flex place-content-center gap-4 px-5" >
24
- < Link href = { github_url } target = "_blank" >
24
+ < Link href = { github_url } target = "_blank"
25
+ aria-label = "Visit us on GitHub"
26
+ title = "GitHub (External Link)"
27
+ rel = "noopener noreferrer" >
25
28
< Icons . gitHub
26
29
className = "cursor-pointer transition duration-500 hover:scale-150 hover:fill-blue-800"
27
30
width = { 25 }
28
31
height = { 25 }
29
32
/>
30
33
</ Link >
31
- < Link href = { twitter_url } target = "_blank" >
34
+ < Link href = { twitter_url } target = "_blank"
35
+ aria-label = "Visit us on Twitter"
36
+ title = "Twitter (External Link)"
37
+ rel = "noopener noreferrer" >
32
38
< Icons . twitter
33
39
className = "cursor-pointer transition duration-500 hover:scale-150 hover:fill-blue-800"
34
40
width = { 25 }
35
41
height = { 25 }
36
42
/>
37
43
</ Link >
38
- < Link href = { linkedin_url } target = "_blank" >
44
+ < Link href = { linkedin_url } target = "_blank"
45
+ aria-label = "Visit us on Linkedin"
46
+ title = "Linkedin (External Link)"
47
+ rel = "noopener noreferrer" >
39
48
< Icons . linkedin
40
49
className = "cursor-pointer transition duration-500 hover:scale-150 hover:fill-blue-800"
41
50
width = { 25 }
You can’t perform that action at this time.
0 commit comments