Skip to content

Commit

Permalink
add click to link on logos
Browse files Browse the repository at this point in the history
  • Loading branch information
alvinkam33 committed Nov 8, 2023
1 parent 0563ad1 commit c43c274
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sections/Sponsor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ export default function Sponsor () {
{Object.keys(sponsors).sort((a, b) => sponsorTierOrder[a] - sponsorTierOrder[b]).map((key) => (
<SponsorTier>
{sponsors[key].map((sponsor) => (
<SponsorLogo src={sponsor.imgURL}/>
<a href={sponsor.link} target="_blank" rel='noreferrer'>
<SponsorLogo src={sponsor.imgURL}/>
</a>
))}
</SponsorTier>
))}
Expand Down

0 comments on commit c43c274

Please sign in to comment.