From 1edfa8c9c3ca7ad361e0e900646305956c0a9dca Mon Sep 17 00:00:00 2001 From: Patrick Mulligan Date: Wed, 12 Aug 2026 20:23:59 +0200 Subject: [PATCH] Reframe deck for a first-time reader (Bucket 2) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Title: "One soil, three flowers" not "3-in-1" — spells out the So·lL·unar wordmark, labels each flower with its type + place (incl. the French farm), and shows a "future flowers" slot. Entities slide echoes the metaphor and names the southern-France environment. Ask: "Choose your way in" with numbered Option 1 / Option 2, framing it as a decision rather than a menu. Roadmap: unpacks the "blueprint is the business" riddle. Memberships: reframed as three recurring-revenue streams with revenue-at-target per tier. Building: literal front/back layout. P&L: adds a "Tap to expand" affordance so the breakdown is discoverable. Co-Authored-By: Claude Opus 4.8 --- src/deck/slides/AskSlide.vue | 16 +++++++---- src/deck/slides/EntitiesSlide.vue | 4 +-- src/deck/slides/MembershipSlide.vue | 21 +++++++++----- src/deck/slides/PnlSlide.vue | 3 ++ src/deck/slides/RoadmapSlide.vue | 2 +- src/deck/slides/SpacesSlide.vue | 2 +- src/deck/slides/TitleSlide.vue | 43 +++++++++++++++++++++++------ 7 files changed, 66 insertions(+), 25 deletions(-) diff --git a/src/deck/slides/AskSlide.vue b/src/deck/slides/AskSlide.vue index 4b5fe19..3816549 100644 --- a/src/deck/slides/AskSlide.vue +++ b/src/deck/slides/AskSlide.vue @@ -4,15 +4,20 @@ import Icon from '../components/Icon.vue' import { brand, investorAsk, pnl, fmtUsd } from '../data' const pct = (n: number) => Math.round(n * 100) -// annual profit share per option, on the recomputed yearly profit -const options = investorAsk.options.map((o) => ({ ...o, annual: Math.round(pnl.yearlyProfit * o.equity) })) +// annual profit share per option, on the recomputed yearly profit. +// Number them so the ask reads as a choice ("which way in?"), not a menu of two. +const options = investorAsk.options.map((o, i) => ({ + ...o, + choice: `Option ${i + 1}`, + annual: Math.round(pnl.yearlyProfit * o.equity), +}))