Components
Loading preview...
Block with one testimonial
npx shadcn@latest add https://21st.dev/r/RayMethula/testimonial"use client";
import { Testimonial } from "@/components/ui/testimonial";
export function TestimonialDemo() {
return (
<Testimonial
companyLogo="https://assets.rapidui.dev/testimonials/companies/vercel.svg"
quote="Webtics delivers powerful insights that turn complex data into actionable decisions"
highlightedText="Webtics"
authorName="Guillermo Rauch"
authorPosition="CEO, Vercel"
authorImage="https://assets.rapidui.dev/testimonials/people/guillermo-rauch.webp"
/>
);
}