From 5d01bd5ebffaf3a026938c345c4b76237496021d Mon Sep 17 00:00:00 2001 From: ciregenz Date: Sun, 14 Jun 2026 04:06:45 -0700 Subject: [PATCH] [eric] onboarding: cursor pop spark, fewer spokes (6) but thicker + glow + longer (0.62s) so each reads clearly --- .../src/app/components/Onboarding/ac/AgenticCursor.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx b/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx index d7207a5b..5fd89df6 100644 --- a/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx +++ b/frontend/src/app/components/Onboarding/ac/AgenticCursor.tsx @@ -64,7 +64,7 @@ const WIN_EASE_MS = 420; // A little spark when the cursor pops into existence: short orange lines shoot out from the // tip and fade. Re-keyed on each pop so it replays. One-shot per mount (no infinite loop). -const BURST_SPOKES = 8; +const BURST_SPOKES = 6; const CursorBurst: React.FC<{ color: string }> = ({ color }) => ( <> {Array.from({ length: BURST_SPOKES }).map((_, i) => ( @@ -73,10 +73,10 @@ const CursorBurst: React.FC<{ color: string }> = ({ color }) => ( style={{ position: 'absolute', left: 3, top: 3, transform: `rotate(${(i / BURST_SPOKES) * 360}deg)` }} > ))}