import Image from "next/legacy/image"
import type { Testimonial } from "../data/testimonials"
export type TestimonialCardProps = {
testimonial: Testimonial
}
export const TestimonialCard = ({ testimonial }: TestimonialCardProps) => {
return (
<div className="keen-slider__slide inline-block h-max w-full space-y-6 rounded-md bg-white p-8">
<div className="flex items-center justify-center">
<Image
className="rounded-[50%]"
src={testimonial.avatar}
alt=""
width="100"
height="100"
/>
</div>
<p className="b1 text-center">{testimonial.text}</p>
<div className="b2 text-center">
<span className="block font-bold">{testimonial.name}</span>
<span className="font-semibold text-blurple-600">
@{testimonial.username}
</span>
</div>
</div>
)
}
export default TestimonialCard