fix(testimonials): add alt text to images

This commit is contained in:
Oliver Davies 2023-10-03 23:51:47 +01:00
parent c0ac7f6221
commit 280db0d969

View file

@ -53,7 +53,7 @@ const sortedTestimonials = _(names)
{image && ( {image && (
<span class="order-first not-prose"> <span class="order-first not-prose">
<img width="50" height="50" class="rounded-full border w-15 h-15" src={`/images/recommendations/${image}`} /> <img width="50" height="50" class="rounded-full border w-15 h-15" alt={`Photo of ${name}`} src={`/images/recommendations/${image}`} />
</span> </span>
)} )}
</footer> </footer>