From 8427deac3ea46bda24f186b939dc46f50799280a Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Mon, 16 Mar 2026 11:25:54 -0700 Subject: [PATCH] Improve typeset and arrange demos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Typeset: make the before worse (all text same size/color = no hierarchy) and the after more dramatic (bigger heading, more size contrast). The transformation should be instantly visible on hover. Arrange: fix heading split (eyebrow+heading was a typeset change, not arrange) — keep it as a single heading to stay on-brand. Co-Authored-By: Claude Opus 4.6 (1M context) --- public/js/demos/commands/arrange.js | 5 +---- public/js/demos/commands/typeset.js | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 14 deletions(-) diff --git a/public/js/demos/commands/arrange.js b/public/js/demos/commands/arrange.js index e9299c6a8..ae1020c70 100644 --- a/public/js/demos/commands/arrange.js +++ b/public/js/demos/commands/arrange.js @@ -25,10 +25,7 @@ export default { after: `
-
-
Team
-
Members
-
+
Team Members
AC
diff --git a/public/js/demos/commands/typeset.js b/public/js/demos/commands/typeset.js index 2f226e054..0eb479260 100644 --- a/public/js/demos/commands/typeset.js +++ b/public/js/demos/commands/typeset.js @@ -1,23 +1,23 @@ -// Typeset command demo - shows generic typography becoming intentional and hierarchical +// Typeset command demo - shows flat, hierarchyless text becoming intentional typography export default { id: 'typeset', - caption: 'Generic system fonts → Intentional type hierarchy', + caption: 'No type hierarchy → Clear, intentional typography', before: `
-
Project Update
-
Q1 Design Sprint
-

The team completed the redesign of the dashboard. All components have been reviewed and approved by stakeholders.

-
Updated 2 hours ago
+
Project Update
+
Q1 Design Sprint
+
The team completed the redesign of the dashboard. All components have been reviewed and approved by stakeholders.
+
Updated 2 hours ago
`, after: `
-
Project Update
-
Q1 Design Sprint
-

The team completed the redesign of the dashboard. All components reviewed and approved.

-
Updated 2 hours ago
+
Project Update
+
Q1 Design Sprint
+

The team completed the redesign of the dashboard. All components reviewed and approved.

+
Updated 2 hours ago
` };