import Link from "next/link"; import { TestimonialCard } from "poyraz-ui/molecules"; import { REFERENCES } from "@/data/references"; type ReferenceCardsProps = { className?: string; cardClassName?: string; }; export function ReferenceCards({ className, cardClassName }: ReferenceCardsProps) { return (
{REFERENCES.map((item) => { const card = ( ); if (!item.profileHref) { return
{card}
; } return ( {card} ); })}
); }