{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "testimonial-2", "title": "Testimonial 2", "author": "ncdai ", "description": "Display a testimonial quote with author attribution and source link.", "files": [ { "path": "src/registry/components/testimonial-2/testimonial-2.tsx", "content": "import { cn } from \"@/lib/utils\"\r\n\r\nexport type Testimonial2Props = {\r\n /** Full display name of the person giving the testimonial. */\r\n authorName: string\r\n /** Short tagline, title, or description of the person. */\r\n authorTagline: string\r\n /** Link to the person's profile, website, or social media page. */\r\n url: string\r\n /** The testimonial text content or recommendation message. */\r\n quote: string\r\n /** Additional CSS classes to apply to the testimonial container. */\r\n className?: string\r\n}\r\n\r\nexport function Testimonial2({\r\n className,\r\n authorName,\r\n authorTagline,\r\n url,\r\n quote,\r\n}: Testimonial2Props) {\r\n return (\r\n
\r\n
\r\n \r\n “\r\n \r\n

{quote}

\r\n \r\n ”\r\n \r\n
\r\n\r\n
\r\n
\r\n\r\n
\r\n \r\n \r\n \r\n {authorName}\r\n \r\n \r\n , \r\n {authorTagline}\r\n \r\n \r\n
\r\n
\r\n
\r\n )\r\n}\r\n", "type": "registry:component", "target": "@components/testimonial-2.tsx" } ], "docs": "https://chanhdai.com/components/testimonial-2", "categories": [ "marketing" ], "type": "registry:component" }