Match aria-label to tag text

This commit is contained in:
Curtis Mitchell 2023-10-31 16:36:41 -07:00
parent dbb52da729
commit b7705c0d9f

View File

@ -57,7 +57,7 @@ export default function Home({ posts }) {
<Link
href={`/blog/${slug}`}
className="text-primary-500 hover:text-primary-600 dark:hover:text-primary-400"
aria-label={`Read "${title}"`}
aria-label={`Read more: "${title}"`}
>
Read more &rarr;
</Link>