--- // Command-palette switcher for the marketing live-demo loop. Renders the design // vocabulary as a 4-column icon grid; the demo loop in live-demo.js opens it and // lands on the `pick` verb. // // Values/labels/icons come from the same canonical source the real picker uses // (skill/scripts/live/vocabulary.mjs), imported at build time, so the demo and // the product never drift. import { LIVE_COMMANDS } from '../../skill/scripts/live/vocabulary.mjs'; interface Props { pick: string; } const { pick } = Astro.props; ---