type SponsorContactData = { id: string; title: string; description: string; phone: { label: string; value: string }; email: { label: string; value: string }; cta: string; image: { src: string; alt: string }; }; export default function SponsorContact({ data }: { data: SponsorContactData }) { return (
{/* Background Decor */}
{/* Left Content */}

{data.title}

{data.description}

{/* Phone */}
call

{data.phone.label}

{data.phone.value}

{/* Email */}
mail

{data.email.label}

{data.email.value}

{/* Right Image */}
{/* eslint-disable-next-line @next/next/no-img-element */} {data.image.alt}
{/* Decorative Frame */}
); }