interface cardProps { src?: string button_link?: string heading?: string button_text?: string card_text?: string } export default function ContentCard(CardProps: cardProps) { return ( <>
{CardProps.heading}

{CardProps.card_text}

{CardProps.button_text}
) }