From a6d0688c94733cb79a31de35768ee109f521a9c2 Mon Sep 17 00:00:00 2001 From: mawkone Date: Mon, 8 Jun 2026 10:52:13 -0700 Subject: [PATCH] design: increase entrepreneur onboarding textarea to 200px and add reassuring subheader text, resolve unused label import error --- .../_onboarding/onboarding-entrepreneur.tsx | 222 ++++++++++++++---- 1 file changed, 173 insertions(+), 49 deletions(-) diff --git a/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx b/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx index d38fa34e..bc52054a 100644 --- a/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx +++ b/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx @@ -1,5 +1,20 @@ -import React, { useState, useEffect, useRef, useMemo, useCallback } from "react"; -import { WizardTop, WizardBody, WizardQ, WizardFooter, Label, LANE_LABELS, ChipGroup, PresetGroup, Field } from "./onboarding-primitives"; +import React, { + useState, + useEffect, + useRef, + useMemo, + useCallback, +} from "react"; +import { + WizardTop, + WizardBody, + WizardQ, + WizardFooter, + LANE_LABELS, + ChipGroup, + PresetGroup, + Field, +} from "./onboarding-primitives"; // Entrepreneur path โ€” 4 steps. Each step is a focused question. const ENTREP_TOTAL = 4; @@ -28,7 +43,10 @@ export function EntrepIdea({ value, onChange }) { else setTimeout(() => setDeleting(true), 1500); } else { if (phChars > 0) setPhChars(phChars - 1); - else { setDeleting(false); setPhIdx((phIdx + 1) % IDEA_PROMPTS.length); } + else { + setDeleting(false); + setPhIdx((phIdx + 1) % IDEA_PROMPTS.length); + } } }, speed); return () => clearTimeout(t); @@ -38,12 +56,12 @@ export function EntrepIdea({ value, onChange }) { <>