## Feedback Numbers / examples on Slide 10 are currently **hardcoded.** Hard to update by hand when the presentation switches scenarios. ## Suggestion - Extract the data into a **config / state object** (e.g. `slide10Data = { users, pool, ... }`). - If wired to the seat input from Slide 08 (issue #4), the numbers stay **consistent automatically.` - Ideal flow: user picks 1000 seats on Slide 08 → all sample numbers on Slide 10 recompute against 1000 seats. ## Related - Should be handled together with #4 — they can share the same store / state. ## File - Slide 10 component under `src/components/sections/`. - Likely a new shared store / context (e.g. `src/lib/scenarioStore.ts`).
Feedback
Numbers / examples on Slide 10 are currently hardcoded. Hard to update by hand when the presentation switches scenarios.
Suggestion
slide10Data = { users, pool, ... }).Related
File
src/components/sections/.src/lib/scenarioStore.ts).