Skip to content

Commit

Permalink
fix: added noopener/noreferrer to links to fix unsafe links warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvink96 committed Apr 3, 2024
1 parent dbfcb7e commit 16ac56e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const AboutPage = () => {
<Row {...context?.rowProps}>
{SITES.map((s) => (
<Col xs={24} sm={12} key={`col-${s.title}`}>
<a href={s.link} target="_blank">
<a href={s.link} target="_blank" rel="noopener noreferrer">
<Card hoverable>
<Flex vertical gap="small">
{createElement(s.icon, { style: { fontSize: 24 } })}
Expand Down

0 comments on commit 16ac56e

Please sign in to comment.