@@ -51,7 +51,7 @@ export function RepoCard({ repo }: RepoCardProps) {
51
51
</ a >
52
52
< h2 className = "overflow-hidden text-3xl cursor-pointer text-hacktoberfest-pink whitespace-nowrap text-ellipsis underline-expand" >
53
53
< a
54
- href = { repo . html_url }
54
+ href = { repo . html_url + '?ref=finder.usmans.me' }
55
55
title = { repo . name }
56
56
target = "_blank"
57
57
rel = "noreferrer"
@@ -66,7 +66,7 @@ export function RepoCard({ repo }: RepoCardProps) {
66
66
{ emojify ( truncatedDescription ) }
67
67
{ repo . description . length > MAX_DESCRIPTION_LENGTH && (
68
68
< a
69
- href = { repo . html_url }
69
+ href = { repo . html_url + '?ref=finder.usmans.me' }
70
70
target = "_blank"
71
71
rel = "noreferrer"
72
72
className = "text-hacktoberfest-pink ml-2 underline-expand"
@@ -101,7 +101,7 @@ export function RepoCard({ repo }: RepoCardProps) {
101
101
{ /* stars and forks cards */ }
102
102
< div className = "flex flex-wrap justify-between gap-4 mt-8 cursor-pointer container-query text-neutral-100" >
103
103
< a
104
- href = { `${ repo . html_url } /stargazers` }
104
+ href = { `${ repo . html_url } /stargazers?ref=finder.usmans.me ` }
105
105
target = "_blank"
106
106
className = "w-full flex-shrink-0 flex-grow basis-[120px] border rounded-xl flex items-center justify-center py-4 gap-3 relative border-hacktoberfest-pink tooltip tooltip-bottom"
107
107
data-tip = "Click to see stargazers"
@@ -115,7 +115,7 @@ export function RepoCard({ repo }: RepoCardProps) {
115
115
</ div >
116
116
</ a >
117
117
< a
118
- href = { `${ repo . html_url } /forks` }
118
+ href = { `${ repo . html_url } /forks?ref=finder.usmans.me ` }
119
119
target = "_blank"
120
120
className = "flex-shrink-0 flex-grow basis-[120px] border rounded-xl p-4 flex items-center justify-center gap-3 relative border-hacktoberfest-pink tooltip tooltip-bottom"
121
121
data-tip = "Click to see forks"
@@ -129,7 +129,7 @@ export function RepoCard({ repo }: RepoCardProps) {
129
129
</ div >
130
130
</ a >
131
131
< a
132
- href = { `${ repo . html_url } /issues` }
132
+ href = { `${ repo . html_url } /issues?ref=finder.usmans.me ` }
133
133
target = "_blank"
134
134
className = "flex-shrink-0 flex-grow basis-[120px] border rounded-xl p-4 flex items-center justify-center gap-3 relative border-hacktoberfest-pink tooltip tooltip-bottom"
135
135
data-tip = "Click to see issues"
0 commit comments