// AGENDA function Agenda() { const blocks = [ { time: "8:30 — 9:30 AM", label: "Opening", title: "Business Foundation & Networking", bullets: [ "Diagnose where your business actually sits on the scale curve", "Speed-network with 500+ peer founders", "Set the one outcome you’ll leave with by 6 PM", "Pre-day breakfast & mindset reset", ], icon: , }, { time: "9:30 — 11:30 AM", label: "Core 1", title: "Entrepreneurship Freedom Blueprint & Scaling 100×", bullets: [ "The Founder-Dependency audit — what only you can do vs. what shouldn’t be on you", "Decision rights, escalation matrix, the ‘CEO’s 4 boxes’", "Pricing power & positioning rebuild", "Live tear-downs of three real Indian SMEs", ], icon: , }, { time: "11:30 — 1:00 PM", label: "Core 2", title: "Team Building & IPO Readiness", bullets: [ "Hiring the layer between you and the work", "Org charts that survive 10× growth", "Compliance, governance, & the IPO checklist most CFOs miss", "ESOP architecture without giving away the company", ], icon: , }, { time: "2:00 — 3:00 PM", label: "Core 3", title: "Finance Mastery & Raising Funds", bullets: [ "Reading your P&L like an investor would", "Capital stack: debt, equity, mezzanine, when each makes sense", "Pitch deck framework that’s closed ₹400 cr+", "Negotiating term sheets — the four clauses founders lose on", ], icon: , }, { time: "3:00 — 5:00 PM", label: "Core 4", title: "Marketing, Sales & Multiplying Valuation", bullets: [ "The AI-augmented sales engine you can run with 4 people", "Funnel math — CAC, payback, LTV the way acquirers measure", "Brand vs. performance — allocate without guessing", "Building the story that gets you a 12× revenue multiple", ], icon: , }, ]; return (
One day · five blocks

You’ll master what takes others 10 years to learn.

Every block ends with a worksheet you commit to. By 6 PM you don’t leave with notes — you leave with a 90-day execution calendar, signed.

9:00 AM — 6:00 PM
07 May Ahmedabad · 09 May Mumbai
{/* Timeline */}
    {/* vertical line */}
    {blocks.map((b, i) => (
  1. {b.icon}
    {b.time}
    {b.label}

      {b.bullets.map((bl, j) => (
    • ))}

  2. ))}
); } window.Agenda = Agenda;