src/components/card-testimonial.tsximport { Paragraph } from '@/components/paragraph'import { Heading } from '@/components/heading'import { Image } from '@/components/image'interface CardTestimonialProps {name: stringtitle: stringreview: string/** Optional profile headshot image URL */image?: string}export function CardTestimonial({name,title,review,image,}: CardTestimonialProps) {return (<div className="bg-body rounded-lg p-5 border border-accent5 shadow-sm flex flex-col h-full">
Showing the first 20 lines.
Get full code