export type CardCoverProperties = {
    /**
     * Card title text
     */
    heading: string;
    /**
     * Card content (max 150 characters)
     */
    paragraph?: string;
    /**
     * Image url
     */
    background: string;
};
