import Image from "next/image"; import Link from "next/link"; export default function TestimonialCard({ question, answer, src, alt }) { const finalsrc = Boolean(src) ? src : "/images/logo.png"; return (

{question}

{alt}
{answer}
{"- @alice"}
); }