"use client"; import Link from "next/link"; import { Typography } from "poyraz-ui/atoms"; import { TestimonialCard } from "poyraz-ui/molecules"; import { REFERENCES } from "@/data/references"; export function ReferencesSection() { return (
References
{REFERENCES.map((item) => { const card = ( ); if (!item.profileHref) { return
{card}
; } return ( {card} ); })}
); }