// HERO SECTION function Hero() { return (
{/* Top attention banner */}
ATTENTION: Full-Day Strategic Workshop for Indian SME & MSME Business Owners Full-Day Strategic Workshop · India
{/* Nav */} {/* Hero content */}
{/* Left: text */}
The Business Booster · AI Workshop {/* Big headline */}

From Founder-Dependent to IPO-Ready

{/* Sub-headline */}

— turn your vision into a billion-rupee reality.

{/* ── VIDEO: mobile only — right after sub-headline ── */}
{/* Body paragraph — below video on mobile */}

Are you an SME owner in India ready to unlock your business’s true potential? The Business Booster with AI workshop is built for founders who are done playing small.

{/* Info chips */}
} label="07 May · Ahmedabad" sub="09 May · Mumbai" subHighlight /> } label="9:00 AM — 6:00 PM" sub="Full-day intensive" /> } label="Hyatt Regency" sub="Premium venues, both cities" />
{/* CTA + trust — side by side on desktop, stacked on mobile */}
Yes! I’m Ready to 9× My Business
{["avatar1.png","avatar2.png","avatar3.png","avatar4.png"].map((src, i) => (
Founder
))}
2,400+ founders booked
across both cities
{/* Right: video — DESKTOP ONLY */}
{/* 9× Growth card — anchored below video */}
Growth roadmap
{/* Trust strip — "As featured in" */}
As featured in
{["FORBES INDIA", "ECONOMIC TIMES", "MINT", "CNBC TV18", "YOUR STORY", "INC42"].map((b) => ( {b} ))}
); } function VideoPlayer() { const [playing, setPlaying] = _useState(false); const videoRef = _useRef(null); function toggle() { const v = videoRef.current; if (!v) return; if (playing) { v.pause(); setPlaying(false); } else { v.play(); setPlaying(true); } } return (
{/* Video */}
); } function Chip({ icon, label, sub, subHighlight = false }) { return (
{icon}
{label}
{subHighlight ? (
{sub}
) : (
{sub}
)}
); } window.Hero = Hero;