src/components/card-testimonial-2.tsximport React from 'react'import { clsx } from 'clsx'import { Image } from '@/components/image'interface CardTestimonial2Props {/** Image source URL for the testimonial author */img: string/** Name or citation for the testimonial author */cite: string/** Testimonial content - should be Paragraph components */children: React.ReactNode/** Custom aspect ratio classes for the image (default: "aspect-[3/4]") */aspect?: string/** Custom rounded classes for the image (default: "rounded-t-full") */rounded?: string}export function CardTestimonial2({img,cite,
Showing the first 20 lines.
Get full code