import { ChatBubbleLeftIcon, MapIcon } from '@heroicons/react/24/solid'; interface ContactDetails { label: string; link: string; } export interface Champion { name: string; location: string; expertise: string; imageUrl: string; contact: ContactDetails[]; } export function ChampionCard({ data }: { data: Champion }): JSX.Element { return (

{data.expertise}

{' '} {data.contact[0].label}
{data.name}
{data.name}
{data.location}
); }