Skip to content

Commit 6952c93

Browse files
JoeMattclaude
andcommitted
fix: add target=_blank and rel=noopener to community links
X/Twitter, Reddit, and Discord card links were missing target=_blank and rel=noopener noreferrer. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 7e0a95d commit 6952c93

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/app/links/page.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ export default function Links() {
9393

9494
<div className="grid md:grid-cols-3 gap-4">
9595
<a href="https://x.com/ProvenanceApp"
96+
target="_blank" rel="noopener noreferrer"
9697
className="flex items-center p-4 bg-blue-50 dark:bg-blue-900/20 rounded-lg hover:bg-blue-100 dark:hover:bg-blue-900/30 transition-colors">
9798
<div className="text-2xl mr-4">🐦</div>
9899
<div>
@@ -102,6 +103,7 @@ export default function Links() {
102103
</a>
103104

104105
<a href="https://reddit.com/r/EmulationOniOS"
106+
target="_blank" rel="noopener noreferrer"
105107
className="flex items-center p-4 bg-indigo-50 dark:bg-indigo-900/20 rounded-lg hover:bg-indigo-100 dark:hover:bg-indigo-900/30 transition-colors">
106108
<div className="text-2xl mr-4">📱</div>
107109
<div>
@@ -111,6 +113,7 @@ export default function Links() {
111113
</a>
112114

113115
<a href="https://discord.com/invite/4TK7PU5"
116+
target="_blank" rel="noopener noreferrer"
114117
className="flex items-center p-4 bg-gray-50 dark:bg-gray-700 rounded-lg hover:bg-gray-100 dark:hover:bg-gray-600 transition-colors">
115118
<div className="text-2xl mr-4">💬</div>
116119
<div>

0 commit comments

Comments
 (0)