Skip to content

Commit 16ac56e

Browse files
committed
fix: added noopener/noreferrer to links to fix unsafe links warning
1 parent dbfcb7e commit 16ac56e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/About.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export const AboutPage = () => {
9393
<Row {...context?.rowProps}>
9494
{SITES.map((s) => (
9595
<Col xs={24} sm={12} key={`col-${s.title}`}>
96-
<a href={s.link} target="_blank">
96+
<a href={s.link} target="_blank" rel="noopener noreferrer">
9797
<Card hoverable>
9898
<Flex vertical gap="small">
9999
{createElement(s.icon, { style: { fontSize: 24 } })}

0 commit comments

Comments
 (0)