/** * Experiment CTA Component * * Call-to-action section at the end of the manifesto. * Subtle buttons, no aggressive colors or fake urgency. * Follows design specs: large typography, centered, minimal styling. */ import Link from 'next/link' import type { CTAContent } from '@/content/schemas/manifesto' interface ExperimentCTAProps { content: CTAContent } export function ExperimentCTA({ content }: ExperimentCTAProps) { return (

{content.heading}

{content.subheading && (

{content.subheading}

)}
{/* Primary Button - Subtle dark background */} {content.primaryButton.text} {/* Secondary Button - Subtle outline */} {content.secondaryButton.text}
) }