JB logo

Command Palette

Search for a command to run...

yOUTUBE
Components
PreviousNext

Testimonial

Display user feedback with author info, avatar, and verified badge.

Loading...

Installation

pnpm dlx shadcn@latest add https://jb.desishub.com/r/testimonial.json

Usage

import {
  Testimonial,
  TestimonialAuthor,
  TestimonialAuthorName,
  TestimonialAuthorTagline,
  TestimonialAvatar,
  TestimonialAvatarImg,
  TestimonialAvatarRing,
  TestimonialQuote,
  TestimonialVerifiedBadge,
} from "@/components/testimonial";
<Testimonial>
  <TestimonialQuote>
    <p>Great work!</p>
  </TestimonialQuote>
 
  <TestimonialAuthor>
    <TestimonialAvatar>
      <TestimonialAvatarImg src="/avatar.jpg" alt="Name" />
      <TestimonialAvatarRing />
    </TestimonialAvatar>
 
    <TestimonialAuthorName>John Doe</TestimonialAuthorName>
    <TestimonialAuthorTagline>CEO @Company</TestimonialAuthorTagline>
  </TestimonialAuthor>
</Testimonial>