fix(testimonials): add alt text to images
This commit is contained in:
parent
c0ac7f6221
commit
280db0d969
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue