Components
Testimonial Card A visually appealing card component designed to display testimonials or quotes. It features an author's image, name, title, and the quote itself, styled to be modern and clean. The component is fully responsive, supports light and dark themes using shadcn/ui variables, and includes a subtle entry animation.
Loading preview...
import { QuoteDisplayCard } from '@/components/ui/testimonial-card-2'; // Adjust the import path
export default function QuoteDisplayCardDemo() {
return (
<div className="flex min-h-[550px] w-full items-center justify-center p-4">
<QuoteDisplayCard
quote="It would be difficult to find a company, brand, or organisation that Jeff Bezos doesn’t influence, directly or indirectly. While he may not be a tech leader, his influence spans almost every industry, making him arguably the most influential leader of our time."
authorName="Jeff Bezos"
authorTitle="Amazon"
authorImageSrc="https://imageio.forbes.com/specials-images/imageserve/5f469ea85cc82fc8d6083f05/Amazon-Founder-and-CEO-Jeff-Bezos/960x0.jpg?format=jpg&width=960"
/>
</div>
);
}