@props([ /** Override the eyebrow line above the headline. */ 'kicker' => 'Ready when you are', /** Override the headline (HTML — `
` and `` allowed). */ 'headline' => null, /** Subtitle paragraph. */ 'subtitle' => 'Live in 4 minutes. No credit card. Cancel anytime, keep your data.', /** Primary CTA href (defaults to register). */ 'primaryHref' => null, 'primaryLabel' => 'Start 14-day trial', /** Secondary CTA href + label (defaults to contact). */ 'secondaryHref' => null, 'secondaryLabel' => 'Book a demo', ]) @php $primaryHref = $primaryHref ?? (Route::has('register') ? route('register') : url('/')); $secondaryHref = $secondaryHref ?? '#'; $kicker = fcp('cta-final.kicker', $kicker); $headline = fcp( 'cta-final.headline', $headline ?? 'Send your first
240,000 messages.', ); $subtitle = fcp('cta-final.subtitle', $subtitle); $primaryLabel = fcp('cta-final.primary_label', $primaryLabel); $secondaryLabel = fcp('cta-final.secondary_label', $secondaryLabel); @endphp