{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "testimonials-01", "description": "Simple centered testimonials with avatars", "registryDependencies": [ "avatar", "card", "badge" ], "files": [ { "path": "creative-tim/blocks/testimonials-01/page.tsx", "content": "\"use client\"\n\nimport { Sparkles } from \"lucide-react\"\n\nimport { Avatar, AvatarFallback, AvatarImage } from \"@/components/ui/avatar\"\nimport { Badge } from \"@/components/ui/badge\"\nimport { Card, CardContent } from \"@/components/ui/card\"\n\nconst TESTIMONIALS = [\n {\n image:\n \"https://images.unsplash.com/photo-1716662318479-a9c0f1cd1a0e?auto=format&fit=crop&q=80&w=400&h=400\",\n name: \"Sarah Johnson\",\n role: \"Product Designer\",\n quote:\n \"The attention to detail and component quality is outstanding. These UI blocks have significantly accelerated our design workflow and improved consistency across our products.\",\n },\n {\n image:\n \"https://images.unsplash.com/photo-1623853434105-8e7a72898180?auto=format&fit=crop&q=80&w=400&h=400\",\n name: \"Michael Chen\",\n role: \"Tech Lead at Stripe\",\n quote:\n \"Exceptional component library with excellent documentation. The customization options and TypeScript support make it perfect for enterprise applications. Highly recommend!\",\n },\n {\n image:\n \"https://images.unsplash.com/photo-1641906840000-4b88f1d44de6?auto=format&fit=crop&q=80&w=400&h=400\",\n name: \"Emma Rodriguez\",\n role: \"Frontend Developer\",\n quote:\n \"A game-changer for rapid prototyping and production. The components are production-ready, well-tested, and the design system is incredibly cohesive. Love it!\",\n },\n]\n\nexport default function TestimonialsBlock() {\n return (\n
\n
\n
\n \n \n Testimonials\n \n

What Clients Say

\n

\n We're constantly trying to express ourselves and actualize our\n dreams. If you have the opportunity to play.\n

\n
\n
\n {TESTIMONIALS.map(({ name, image, role, quote }, key) => (\n \n \n \n \n \n {name\n .split(\" \")\n .map((n) => n[0])\n .join(\"\")}\n \n \n

{name}

\n

{role}

\n
\n "{quote}"\n
\n
\n
\n ))}\n
\n
\n
\n )\n}\n", "type": "registry:page", "target": "app/testimonials-01/page.tsx" } ], "meta": { "iframeHeight": "700px", "container": "w-full bg-surface", "mobile": "component" }, "categories": [ "testimonials" ], "type": "registry:block" }