Skip to content

Commit f9d5809

Browse files
RenanhcorreaNiallJoeMahercoderabbitai[bot]
authored
fix(sponsorship): open sponsor links in a new tab (#1307)
* fix(sponsorship): open sponsor links in a new tab * Update app/(app)/sponsorship/page.tsx Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --------- Co-authored-by: Niall Maher <[email protected]> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 4a1228d commit f9d5809

File tree

1 file changed

+28
-21
lines changed

1 file changed

+28
-21
lines changed

app/(app)/sponsorship/page.tsx

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -71,33 +71,40 @@ const Sponsorship = () => {
7171
</Link>
7272
</div>
7373
<div className="ml-8 mt-4 flex flex-shrink-0 flex-grow lg:ml-4 lg:flex-grow-0">
74-
<img
75-
className="my-auto h-16"
76-
src="/images/sponsors/version1.png"
77-
alt="Version 1"
78-
/>
74+
<Link href="https://www.version1.com/" target="_blank" rel="noopener noreferrer">
75+
<img
76+
className="my-auto h-16"
77+
src="/images/sponsors/version1.png"
78+
alt="Version 1"
79+
/>
80+
</Link>
7981
</div>
8082
<div className="ml-8 mt-4 flex flex-shrink-0 flex-grow lg:ml-4 lg:flex-grow-0">
81-
<img
82-
className="my-auto h-12"
83-
src="/images/sponsors/offerzen.png"
84-
alt="Mirage"
85-
/>
83+
<Link href="https://www.offerzen.com/" target="_blank" rel="noopener noreferrer">
84+
<img
85+
className="my-auto h-12"
86+
src="/images/sponsors/offerzen.png"
87+
alt="Mirage"
88+
/>
89+
</Link>
8690
</div>
87-
8891
<div className="ml-8 mt-4 flex flex-shrink-0 flex-grow lg:ml-4 lg:flex-grow-0">
89-
<img
90-
className="my-auto h-12"
91-
src="/images/sponsors/learnupon.png"
92-
alt="Transistor"
93-
/>
92+
<Link href="https://www.learnupon.com/" target="_blank" rel="noopener noreferrer">
93+
<img
94+
className="my-auto h-12"
95+
src="/images/sponsors/learnupon.png"
96+
alt="Transistor"
97+
/>
98+
</Link>
9499
</div>
95100
<div className="ml-8 mt-4 flex flex-shrink-0 flex-grow lg:ml-4 lg:flex-grow-0">
96-
<img
97-
className="my-auto h-12"
98-
src="/images/sponsors/wework.png"
99-
alt="Workcation"
100-
/>
101+
<Link rel="noopener noreferrer" href="https://www.wework.com/" target="_blank">
102+
<img
103+
className="my-auto h-12"
104+
src="/images/sponsors/wework.png"
105+
alt="Workcation"
106+
/>
107+
</Link>
101108
</div>
102109
</div>
103110
</div>

0 commit comments

Comments
 (0)