From 8bb0017752da263f07fc0800ad0b254db4292502 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Mon, 16 Mar 2026 07:24:55 -0700 Subject: [PATCH] fix: overdrive demo works with hover slider, no AI slop MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The demo must be purely visual (hover slider reveals after state, no clicking). New demo shows standard rectangular card vs organic blob-shaped composition — the visual difference is instant and communicates "beyond normal CSS" without animation or interaction. Co-Authored-By: Claude Opus 4.6 (1M context) --- public/js/demos/commands/overdrive.js | 56 +++++++++------------------ 1 file changed, 19 insertions(+), 37 deletions(-) diff --git a/public/js/demos/commands/overdrive.js b/public/js/demos/commands/overdrive.js index 315b397d8..04ced5a61 100644 --- a/public/js/demos/commands/overdrive.js +++ b/public/js/demos/commands/overdrive.js @@ -1,51 +1,33 @@ -// Overdrive command demo - shows a static list becoming a morphing shared-element transition +// Overdrive command demo - shows standard rectangular layout vs organic, non-standard composition export default { id: 'overdrive', - caption: 'Static list with page jump → Shared element morph transition', + caption: 'Standard rectangular layout → Organic, technically ambitious composition', before: ` -
-
PROJECTS
-
-
-
-
-
Redesign
-
3 tasks
-
-
-
-
-
-
Launch
-
7 tasks
-
-
+
+
+
Sarah Chen
+
Design Lead
+
+
142
Projects
+
38
Reviews
`, after: ` -
-
PROJECTS
-
-
-
R
-
-
Redesign
-
3 tasks
-
-
Active
-
-
-
L
-
-
Launch
-
7 tasks
-
+
+
+
+
+
SC
+
Sarah Chen
+
Design Lead
+
+
142
Projects
+
38
Reviews
-
view-transition-name on cards for shared element morphing
` };