import type { CtaContent } from "../content/types"; interface FooterCtaProps { cta: CtaContent; } export function FooterCta({ cta }: FooterCtaProps) { return (

Launchpad

{cta.title}

{cta.body}

{cta.buttons.map((button, index) => ( {button.label} ))}
); }