Skip to content

Commit 12b4ed2

Browse files
authored
Merge pull request #749 from curt-mitch/a11y-score-boost
Accessibility improvement: match aria-label to tag text for "read more" links
2 parents dbb52da + b7705c0 commit 12b4ed2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export default function Home({ posts }) {
5757
<Link
5858
href={`/blog/${slug}`}
5959
className="text-primary-500 hover:text-primary-600 dark:hover:text-primary-400"
60-
aria-label={`Read "${title}"`}
60+
aria-label={`Read more: "${title}"`}
6161
>
6262
Read more &rarr;
6363
</Link>

0 commit comments

Comments
 (0)