Problem: Quote grid.
Solution#
<figure class="rounded-2xl border p-6">
<blockquote class="text-sm">“Nakshora cut our styling time in half.”</blockquote>
<figcaption class="mt-4 flex items-center gap-3">
<img class="size-10 rounded-full" src="a.jpg" alt="" />
<div><p class="text-sm font-semibold">Ayesha R.</p><p class="text-xs text-slate-500">CTO, Acme</p></div>
</figcaption>
</figure>Why this works#
figure/blockquote semantics + avatar row.
Variants#
- Responsive: add screen prefixes to the core classes
- Dark: pair each color utility with its dark: twin
- Animated: add
transition+ a state variant for motion
Related recipes#
cookbook/index|Cookbook index · utilities/index|Utilities reference · patterns/index|Layout patterns
