Skip to content

Commit cbad21d

Browse files
committed
Simplify onboarding flow copy
1 parent 09d8c2b commit cbad21d

File tree

1 file changed

+8
-16
lines changed

1 file changed

+8
-16
lines changed

web/src/components/onboard/onboarding-flow.tsx

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ export function OnboardingFlow({
305305

306306
{/* What is Codebuff blurb */}
307307
<p className="text-muted-foreground">
308-
Get free bonus credits for Codebuff, a powerful AI coding agent. It takes only seconds!
308+
Get free bonus credits for Codebuff, a powerful AI coding agent. Takes only seconds!
309309
</p>
310310
</motion.div>
311311

@@ -316,7 +316,7 @@ export function OnboardingFlow({
316316
<div className="flex items-start gap-4">
317317
<StepBadge number={1} />
318318
<div className="flex-1 space-y-4">
319-
<h3 className="text-lg font-semibold">Install the Codebuff CLI</h3>
319+
<h3 className="text-lg font-semibold">Get the CLI</h3>
320320
<div className="bg-zinc-800/60 rounded-md px-3 py-2.5 flex items-center justify-between">
321321
<code className="font-mono text-white/90 select-all text-sm">
322322
{INSTALL_COMMAND}
@@ -360,9 +360,9 @@ export function OnboardingFlow({
360360
<div className="flex items-start gap-4">
361361
<StepBadge number={2} />
362362
<div className="flex-1 space-y-4">
363-
<h3 className="text-lg font-semibold">Navigate to your project and run Codebuff</h3>
363+
<h3 className="text-lg font-semibold">Run Codebuff in your project</h3>
364364
<p className="text-muted-foreground text-sm">
365-
In your terminal, navigate to any project folder, and run Codebuff.
365+
Navigate to your project folder and run codebuff.
366366
</p>
367367
<div className="space-y-2">
368368
<div className="bg-zinc-800/60 rounded-md px-3 py-2.5 flex items-center justify-between">
@@ -389,20 +389,13 @@ export function OnboardingFlow({
389389
<StepBadge number={3} />
390390
<div className="flex-1 space-y-4">
391391
<h3 className="text-lg font-semibold">
392-
Redeem Your Referral Code 🎉
392+
Redeem bonus credits
393393
</h3>
394394
<p className="text-muted-foreground text-sm">
395-
You're almost done! Paste your code into the CLI to claim bonus credits
396-
{referrerName ? ` ${referrerName} will earn credits too!` : '.'}
395+
Finally, login to the CLI and paste in the code below.
396+
{referrerName ? ` ${referrerName} will earn credits too!` : '.'}
397397
</p>
398398
<div className="bg-acid-matrix/20 rounded-lg p-6">
399-
<p className="text-green-200 text-lg font-semibold mb-3">
400-
🎁{' '}
401-
{referrerName
402-
? `You and ${referrerName} will both`
403-
: "You'll"}{' '}
404-
earn bonus credits!
405-
</p>
406399
<div className="bg-zinc-800 rounded-md p-3 flex items-center justify-between">
407400
<code
408401
className="font-mono text-white font-bold text-lg"
@@ -413,8 +406,7 @@ export function OnboardingFlow({
413406
<EnhancedCopyButton value={referralCode} />
414407
</div>
415408
<p className="text-green-200/80 text-sm mt-2">
416-
Paste this code in the CLI input box after logging in to claim your
417-
bonus credits!
409+
Paste this code in the input box and hit Enter to claim your bonus 🎁
418410
</p>
419411
</div>
420412
</div>

0 commit comments

Comments
 (0)