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