Skip to content

Commit

Permalink
open footer links in new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjagodic committed Apr 15, 2024
1 parent d4cdf27 commit a3c3538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function Footer({ logo, maintained, links, socials }) {
</Links>

<Links>
{socials.map((link, i) => <a href={link.href} key={i}>{link.text}</a>)}
{socials.map((link, i) => <a href={link.href} target="_blank" rel="noreferrer" key={i}>{link.text}</a>)}
</Links>
</div>
</Container>
Expand Down

0 comments on commit a3c3538

Please sign in to comment.