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

{innerText}
{"- "} {`@${user}`}

); }