import type { LocalizedStepContent } from '@funnelsgrove/runtime'; export type EmailCaptureLocaleContent = { kicker: string; title: string; description: string; fieldLabel: string; placeholder: string; submitLabel: string; submittingLabel: string; saveErrorMessage: string; }; export const emailCaptureContent = { defaultLocale: 'en', locales: { en: { kicker: 'Before we unlock your plan', title: 'Where should we send your access link?', description: 'Enter the email address you want to use for access details, updates, and recovery.', fieldLabel: 'Email address', placeholder: 'you@example.com', submitLabel: 'Continue', submittingLabel: 'Saving...', saveErrorMessage: 'Unable to save email', }, }, } as const satisfies LocalizedStepContent;