import type { Review } from "@/lib/reviews"; export function TestimonialCard({ t, featured = false, }: { t: Review | { quote: string; by: string; org?: string }; featured?: boolean; }) { return (
{featured && (
Featured
)}
“{t.quote}”
{t.by .split(" ") .map((w) => w[0]) .slice(0, 2) .join("")} {t.by} {t.org && ( {t.org} )}
); }