Skip to content

Commit

Permalink
fix(seo): identify sponsored links (#11217)
Browse files Browse the repository at this point in the history
Adds `rel="sponsored"` to placement links.
  • Loading branch information
caugner authored May 30, 2024
1 parent 7da5467 commit 5d47456
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/src/ui/organisms/placement/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ function RenderSideOrTopBanner({
click
)}&version=${version}`}
target="_blank"
rel="noreferrer"
rel="sponsored noreferrer"
>
<img
src={`/pimg/${encodeURIComponent(image || "")}`}
Expand All @@ -346,7 +346,7 @@ function RenderSideOrTopBanner({
click
)}&version=${version}`}
target="_blank"
rel="noreferrer"
rel="sponsored noreferrer"
>
{cta}
</a>
Expand Down Expand Up @@ -405,7 +405,7 @@ function RenderHpPlacement({
click
)}&version=${version}`}
target="_blank"
rel="noreferrer"
rel="sponsored noreferrer"
>
<img
src={`/pimg/${encodeURIComponent(image || "")}`}
Expand Down Expand Up @@ -445,7 +445,7 @@ function RenderBottomBanner({
click
)}&version=${version}`}
target="_blank"
rel="noreferrer"
rel="sponsored noreferrer"
>
<img
src={`/pimg/${encodeURIComponent(image || "")}`}
Expand Down

0 comments on commit 5d47456

Please sign in to comment.