@Bayoumi-dev
Posted
Hey Eileen,
I suggest you put the status of the preview card component into the list item
to add more semantics
to your project, Div
's don't do much for semantics but a list is much more meaningful..:
<ul class="stats-preview__stats">
<li>
<span class="stat-number">10K+</span>
<span class="stat-name">Companies</span>
</li>
<li>
<span class="stat-number">314</span>
<span class="stat-name">Templates</span>
</li>
<li>
<span class="stat-number">12M+</span>
<span class="stat-name">Queries</span>
</li>
</ul>
I hope this is useful to you... Keep coding👍
Marked as helpful
@Eileenpk
Posted
@Bayoumi-dev thank you for pointing that out, you just stopped me from doing the same thing on another project! I'm making the change now :)