From dcbab51f9eed849675f0df4f027dd2b7d3cab9e6 Mon Sep 17 00:00:00 2001 From: mawkone Date: Mon, 8 Jun 2026 11:04:03 -0700 Subject: [PATCH] design: swap order of onboarding steps so category selection happens before idea brain-dump --- .../_onboarding/onboarding-entrepreneur.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx b/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx index ecff26f..398a3f5 100644 --- a/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx +++ b/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx @@ -18,7 +18,7 @@ import { // Entrepreneur path — 4 steps. Each step is a focused question. const ENTREP_TOTAL = 4; -const ENTREP_STEP_NAMES = ["Idea", "Type", "Goal", "Look"]; +const ENTREP_STEP_NAMES = ["Type", "Idea", "Goal", "Look"]; const IDEA_PROMPTS = [ "A community for indie game devs to swap playtesters, with weekly demo nights", @@ -363,14 +363,6 @@ export function EntrepreneurPath({ canNext, onSkip = null; if (step === 0) { - body = ( - onUpdate({ idea: v })} - /> - ); - canNext = (data.idea || "").trim().length >= 8; - } else if (step === 1) { body = ( ); canNext = !!data.productType; + } else if (step === 1) { + body = ( + onUpdate({ idea: v })} + /> + ); + canNext = (data.idea || "").trim().length >= 8; } else if (step === 2) { body = ( onUpdate({ goal: v })} />