import type { FunnelManifestStep, FunnelStepMeta } from '@funnelsgrove/runtime'; const manifestStep = { id: 'your-plan', name: 'your-plan', path: '/your-plan', filePath: 'src/steps/step-your-plan.tsx', componentKey: 'stepYourPlan', type: 'value_prop_story', title: 'Your plan', } as const satisfies FunnelManifestStep; const componentMeta = { id: 'your-plan', name: 'your-plan', type: 'value_prop_story', figmaNodeId: 'golden:value-prop-story', title: 'Your plan', description: 'Narrative explanation of the product value.', } as const satisfies FunnelStepMeta; export const goldenFixture = { stepType: 'value_prop_story', manifestStep, componentMeta, actionOwner: 'shared-shell', } as const;