File tree Expand file tree Collapse file tree 1 file changed +8
-10
lines changed
Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -82,20 +82,18 @@ export default function ContributePage() {
8282 contributors
8383 . filter ( ( contributor ) => contributor . type === "User" )
8484 . map ( ( item , index ) => (
85- < div
85+ < Link
8686 key = { index }
87+ href = { item . html_url }
88+ target = "_blank"
89+ rel = "noopener noreferrer"
8790 className = { `${
8891 isDarkMode
8992 ? "bg-gray-700 text-white"
9093 : "bg-gray-100 text-black"
91- } rounded-lg p-4 flex flex-col items-center justify-center hover:shadow-card-shadow transition-all duration-500 ease-in`}
94+ } rounded-lg p-4 flex flex-col items-center justify-center hover:shadow-card-shadow hover:scale-105 transition-all duration-500 ease-in`}
9295 >
93- < Link
94- href = { item . html_url }
95- target = "_blank"
96- rel = "noopener noreferrer"
97- className = "flex items-center justify-center flex-col hover:scale-105 transition-all duration-500 ease"
98- >
96+ < div className = "flex items-center justify-center flex-col transition-all duration-500 ease" >
9997 < Image
10098 src = { item . avatar_url }
10199 alt = { item . login }
@@ -104,8 +102,8 @@ export default function ContributePage() {
104102 className = "w-12 h-12 mr-2 rounded-full self-center"
105103 />
106104 { item . login }
107- </ Link >
108- </ div >
105+ </ div >
106+ </ Link >
109107 ) )
110108 ) : (
111109 < p > No data available</ p >
You can’t perform that action at this time.
0 commit comments