TetraKits UI Testimonial Card ← Library

Testimonial Card

Testimonial quote card with blockquote, gradient avatar circle, name, and job title. Light bordered card for social proof sections on landing pages, agency sites, and SaaS homepages.

testimonial cardsocial proofquote card reactcustomer review uitailwind card
Live preview

Dependencies

react
npm install react react-dom
export function TestimonialCard() {
  return (
    <figure className="rounded-2xl border border-zinc-200 bg-white p-6 shadow-sm">
      <blockquote className="text-zinc-700">"We shipped our MVP in a weekend using these blocks."</blockquote>
      <figcaption className="mt-4 flex items-center gap-3">
        <div className="h-10 w-10 rounded-full bg-gradient-to-br from-indigo-400 to-violet-500" />
        <div>
          <p className="text-sm font-semibold text-zinc-900">Alex Rivera</p>
          <p className="text-xs text-zinc-500">Founder, Launchpad</p>
        </div>
      </figcaption>
    </figure>
  );
}