Components
Loading preview...
Simple testimonials section with minimal cards
npx shadcn@latest add https://21st.dev/r/axorax/testimonials-1import { TestimonialsSection } from "@/components/blocks/testimonials-1"
const demoTestimonials = [
{
name: "Sir kitty cat the cat the third",
rating: 4,
role: "Lead cuteness manager",
text: `MeowCorp has purr-transformed how our clowder prowls together. The pawsome interface and claw-some features have boosted our productivity by 30%... or at least that's what the hoomans think. Meow.`,
avatar:
"https://media.istockphoto.com/id/1281804798/photo/very-closeup-view-of-amazing-domestic-pet-in-mirror-round-fashion-sunglasses-is-isolated-on.jpg?s=612x612&w=0&k=20&c=oMoz9rUr-rDhMGNmEepCkr7F1g3AXs9416hvVnT_4CI=",
},
{
name: "Mr. Barkinson Barker",
rating: 3,
role: "CEO, Anti-cat league",
text: `bcuz we got meowcorp earlier, we were able to beat the cats in revenue by 69%`,
avatar:
"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSBgI7Hw5mF3_1vJcls5z33y4272nPT7pBWNw&s",
},
];
export function Demo() {
return <TestimonialsSection testimonials={demoTestimonials} />;
}