Components
npx shadcn@latest add https://21st.dev/r/RayMethula/testimonial-carouselLoading preview...
"use client";
import { TestimonialCarousel } from "@/components/ui/testimonial-carousel";
const testimonials = [
{
company: "clerk",
avatar: "nick-parsons.webp",
name: "Nick Parsons",
role: "Director of Marketing, Clerk",
review: "our team saved countless hours after switching to webtics",
},
{
company: "raycast",
avatar: "thomas-paul-mann.webp",
name: "Thomas Paul Mann",
role: "CEO, Raycast",
review: "from data chaos to clarity - webtics delivers immediate results.",
},
{
company: "vercel",
avatar: "guillermo-rauch.webp",
name: "Guillermo Rauch",
role: "CEO, Vercel",
review: "webtics delivers powerful insights that turn complex data into actionable decisions",
},
];
export function TestimonialCarouselDemo() {
return (
<TestimonialCarousel
testimonials={testimonials}
companyLogoPath="https://assets.rapidui.dev/testimonials/companies/"
avatarPath="https://assets.rapidui.dev/testimonials/people/"
/>
);
}