export type CtaButton = {
    type?: 'link';
    name: string;
    url: string;
    style?: 'pill' | 'roundedRectangle';
    arrow?: boolean;
} | {
    type: 'github';
    url: string;
};
