import Image from "next/image"; export interface TestimonialCardProps { id: string; title: string; content: string; author?: string; rating?: number; image?: string; publishedAt: string; } export const TestimonialCard = ({ id, title, content, author, rating, image, publishedAt, }: TestimonialCardProps) => { return (
{content}
{author}
{new Date(publishedAt).toLocaleDateString()}