import type { StepEditorSection } from '@funnelsgrove/runtime'; export const emailCaptureEditor: readonly StepEditorSection[] = [ { id: 'copy', label: 'Copy', fields: [ { id: 'kicker', label: 'Kicker', kind: 'text', path: 'kicker', }, { id: 'title', label: 'Title', kind: 'text', path: 'title', }, { id: 'description', label: 'Description', kind: 'textarea', path: 'description', }, { id: 'fieldLabel', label: 'Field label', kind: 'text', path: 'fieldLabel', }, { id: 'placeholder', label: 'Placeholder', kind: 'text', path: 'placeholder', }, { id: 'submitLabel', label: 'Submit label', kind: 'text', path: 'submitLabel', }, { id: 'submittingLabel', label: 'Submitting label', kind: 'text', path: 'submittingLabel', }, { id: 'saveErrorMessage', label: 'Error message', kind: 'text', path: 'saveErrorMessage', }, ], }, ] as const;