Testimonial 2
ncdai/testimonial-2UnverifiedComponent
Display a testimonial quote with author attribution and source link.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/srirae/iamsri/main/public/r/testimonial-2.jsonSource
1import { cn } from "@/lib/utils"23export type Testimonial2Props = {4 /** Full display name of the person giving the testimonial. */5 authorName: string6 /** Short tagline, title, or description of the person. */7 authorTagline: string8 /** Link to the person's profile, website, or social media page. */9 url: string10 /** The testimonial text content or recommendation message. */11 quote: string12 /** Additional CSS classes to apply to the testimonial container. */13 className?: string14}1516export function Testimonial2({17 className,18 authorName,19 authorTagline,20 url,21 quote,22}: Testimonial2Props) {23 return (24 <figure className={cn("relative flex flex-col gap-6 pl-3", className)}>25 <blockquote className="relative block w-full font-serif text-xl text-foreground md:w-lg md:text-2xl">26 <span27 className="absolute -left-3 text-muted-foreground select-none"28 aria-hidden="true"29 >30 “31 </span>32 <p className="inline text-pretty">{quote}</p>33 <span34 className="absolute translate-x-0.5 text-muted-foreground select-none"35 aria-hidden="true"36 >37 ”38 </span>39 </blockquote>4041 <figcaption className="ml-auto flex w-full items-center gap-2 md:w-1/2">42 <div className="hidden h-px grow translate-y-px bg-border md:block" />4344 <div className="flex flex-col md:ml-auto md:text-right">45 <span className="text-sm leading-none font-medium">46 <a href={url} target="_blank" rel="noopener">47 <span className="absolute inset-0" aria-hidden />48 {authorName}49 </a>50 <span className="mt-1 block text-muted-foreground md:mt-0 md:inline">51 <span className="hidden text-foreground md:inline">, </span>52 {authorTagline}53 </span>54 </span>55 </div>56 </figcaption>57 </figure>58 )59}
Files it writes
More from ncdai
All 48 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Apple Hello Effectapple-hello-effect | ncdai | Components | Unverified | 1 dep | |
| Apple Hello Effect - Hindiapple-hello-effect-hindi | ncdai | Components | Unverified | 1 dep | |
| Apple Hello Effect - Spanishapple-hello-effect-spanish | ncdai | Components | Unverified | 1 dep | |
| Apple Hello Effect - Vietnameseapple-hello-effect-vietnamese | ncdai | Components | Unverified | 1 dep | |
| Brand Assets Menubrand-assets-menu | ncdai | Components | Unverified | 1 dep | |
| chevrons-up-down-iconchevrons-up-down-icon | ncdai | Components | Unverified | 1 dep | |
| Code Block Commandcode-block-command | ncdai | Components | Unverified | 4 deps · 2 files | |
| Consent Managerconsent-manager | ncdai | Components | Unverified | 1 dep |
