Storybook stories for the `GuideWelcome` component, covering the guide-mode chat empty state with configurable quick actions, slash-command onboarding cards, and custom greeting copy. ## Key Components | Export | Type | Description | |---|---|---| | `Default` | `Story` | Full guide-mode empty state with slash-command list and quick-action chips | | `NoCommands` | `Story` | Greeting and quick-action chips only, no slash-command list | | `NoQuickActions` | `Story` | Slash-command list only, chip row omitted entirely | | `CustomCopy` | `Story` | Overrides default `title` and `subtitle` greeting text | **Supporting fixtures:** - `SAMPLE_QUICK_ACTIONS` — Seven action chips demonstrating inline display and `⋯` overflow menu - `SAMPLE_LIST` — Three `MingoOnboardingCard` entries (Product Releases, Blog Posts, Onboarding Guides) rendered inside a shared scroll region - `ACTIONS` — Reusable Recent / Search / Find handlers passed to each card ## Usage Example ```typescript // Render the default guide-mode empty state inside the decorator shell console.log('quick action', action.id)} > {SAMPLE_LIST} ``` The shared decorator wraps every story in a `440×760px` dark panel that mimics the narrow guide drawer, with `GuideModeBanner` pinned at the top and the story content padded below it. ## Notes - `quickActions` and `onQuickAction` use `control: false` in `argTypes` — configure them directly in story `args`, not the Storybook controls panel. - `GuideWelcome` ships no default quick actions; the chip row is omitted entirely when none are supplied (`NoQuickActions`). - Figma reference: node `7532:328214`. - Source: [`GuideWelcome.stories.tsx`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/GuideWelcome.stories.tsx)