Skip to content

Commit

Permalink
sponsors: Add rel="nofollow" to outbound links
Browse files Browse the repository at this point in the history
We don't want search engines to correlate any ranking between us and our
sponsors, as part of our no-strings-attached policy.
  • Loading branch information
gmta committed Nov 18, 2024
1 parent 007f999 commit abdb32e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/landing/sponsors.astro
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const sponsors = [
{tier.sponsors.map((sponsor) => {
return (
<div class="relative flex items-center justify-center min-h-[102px] border-[6px] border-[#fff] rounded-[30px] shadow-[0_0_8px_0_rgba(202,205,226,0.38)] p-4">
<a class="text-black" href={sponsor.href}>
<a class="text-black" href={sponsor.href} rel="nofollow">
{sponsor.logo ? (
<img src={sponsor.logo} alt={sponsor.name} />
) : (
Expand Down

0 comments on commit abdb32e

Please sign in to comment.