// The Journey — 4 steps from idea → first 100 customers. A visual marker shows // where most tools stop. Each step shows a tiny "demo" snippet of what Vibn does. const JOURNEY_STEPS = [ { num: "01", title: "You describe it.", sub: "The AI builds it.", body: "Talk to it like you'd talk to a friend who codes. It builds the screens, the buttons, the logic — whatever your idea needs.", demo: "describe", }, { num: "02", title: "It goes live.", sub: "The AI puts it online.", body: "Logins, saving your stuff, hosting — handled. You get a live link from minute one. Share it. Show your friends. It just works.", demo: "live", }, { num: "03", title: "It gets seen.", sub: "The AI markets it.", body: "Posts, emails, social — written, scheduled, and shipped on autopilot. The tone matches your brand because you trained it talking to your AI.", demo: "seen", }, { num: "04", title: "It gets customers.", sub: "Your first 100.", body: "Through our Google partnership, Vibn helps the right people find your product when they're searching for what you built.", demo: "customers", }, ]; function Journey() { return (
The journey

From idea to first 100 customers.
In one chat.

Other tools take you to step two and wave goodbye. Vibn keeps building with you.

{/* "Where everyone else stops" marker, sits over the gap between cards 2 and 3 */}
↑ Where every other tool stops
{JOURNEY_STEPS.map((step, i) => ( = 2} /> ))}

One tool. One chat. From "wouldn't it be cool if…" to real customers paying you money.

); } function StepCard({ step, stopped }) { return (
{step.num}

{step.title}

{step.sub}

{step.body}

); } function StepDemo({ demo }) { if (demo === "describe") { return (
YOUbuild a booking site for my dog grooming biz
VIBNon it — designing screens…
VIBN ✓ booking flow ready
); } if (demo === "live") { return (
VIBN put it online
pawsandposh.vibn.app
✓ logins · ✓ saving · ✓ live
); } if (demo === "seen") { return (
VIBNdraft a launch post for Instagram + email blast
↳ scheduled for Tue 9:00 AM
↳ scheduled for Thu 6:00 PM
✓ 3 channels on autopilot
); } if (demo === "customers") { return (
+47this week
found you via Google
✓ tracking toward 100
); } return null; } Object.assign(window, { Journey });