import Image from "next/image"; import Link from "next/link"; import { Card } from "poyraz-ui/atoms"; import { SPONSORS } from "@/data/sponsors"; export function SponsorsSection() { if (!SPONSORS || SPONSORS.length === 0) return null; return (
{SPONSORS.map((sponsor) => { const logoContent = (
{sponsor.name}
); if (sponsor.websiteUrl) { return ( {logoContent} ); } return
{logoContent}
; })}
); }