import type { StepEditorSection } from '@funnelsgrove/runtime'; export const stepOneEditor: readonly StepEditorSection[] = [ { id: 'hero', label: 'Hero', fields: [ { id: 'headline', label: 'Headline', kind: 'textLines', path: 'headline', }, { id: 'artwork', label: 'Artwork', kind: 'image', path: 'artwork', }, ], }, ] as const;