Skip to content

Commit eb02e7a

Browse files
committed
fix(security): add rel=noopener noreferrer to footer external links
1 parent 5ad85c4 commit eb02e7a

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

src/components/Footer.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,20 @@ export const Footer = () => {
88
Made with 💜 by the Ink team
99
</div>
1010
<div className="text-sm text-gray-600">
11-
<a href="https://inkonchain.com/en-US/privacy" target="_blank">
11+
<a
12+
href="https://inkonchain.com/en-US/privacy"
13+
target="_blank"
14+
rel="noopener noreferrer"
15+
>
1216
Privacy Notice
1317
</a>
1418
</div>
1519
<div className="text-sm text-gray-600">
16-
<a href="https://inkonchain.com/en-US/terms" target="_blank">
20+
<a
21+
href="https://inkonchain.com/en-US/terms"
22+
target="_blank"
23+
rel="noopener noreferrer"
24+
>
1725
Terms of Service
1826
</a>
1927
</div>

0 commit comments

Comments
 (0)