import type { LocalizedStepContent } from '@funnelsgrove/runtime'; export type StepOneLocaleContent = { headline: readonly string[]; }; export const stepOneContent = { defaultLocale: 'en', locales: { en: { headline: [ 'Build a plan', 'made for you', 'in a few quick steps', ], }, }, } as const satisfies LocalizedStepContent;