import type { FunnelManifestStep, FunnelStepMeta } from '@funnelsgrove/runtime'; const manifestStep = { id: 'welcome', name: 'welcome', path: '/welcome', filePath: 'src/steps/step-welcome.tsx', componentKey: 'stepWelcome', type: 'intro_hero', title: 'Welcome', } as const satisfies FunnelManifestStep; const componentMeta = { id: 'welcome', name: 'welcome', type: 'intro_hero', figmaNodeId: 'golden:intro-hero', title: 'Welcome', description: 'Opening promise and low-friction entry.', } as const satisfies FunnelStepMeta; export const goldenFixture = { stepType: 'intro_hero', manifestStep, componentMeta, actionOwner: 'shared-shell', } as const;