src/components/card-testimonial-1.tsximport React from 'react'import { Quote } from '@/components/quote'import { Image } from '@/components/image'interface CardTestimonial1Props {/** 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}export function CardTestimonial1({img,cite,children,}: CardTestimonial1Props) {return (<div className="flex flex-col justify-center items-center">
Showing the first 20 lines.
Get full code