From 98e673b8f47dba6358e4390a13d6901dbad21fca Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Sun, 11 Jan 2026 15:27:40 -0800 Subject: [PATCH] Add standalone command cheatsheet page - Create /cheatsheet with all 17 commands grouped by category - Clean, scannable layout with command relationships - Print-friendly styling, dark mode support - Add server route for cheatsheet page - Link from Commands section and footer Addresses user feedback requesting a quick reference doc for practical command usage. Co-Authored-By: Claude Opus 4.5 --- public/cheatsheet.html | 288 +++++++++++++++++++++++++++++++++++++++++ public/css/main.css | 11 ++ public/index.html | 3 +- server/index.js | 2 + 4 files changed, 303 insertions(+), 1 deletion(-) create mode 100644 public/cheatsheet.html diff --git a/public/cheatsheet.html b/public/cheatsheet.html new file mode 100644 index 000000000..49ac0968d --- /dev/null +++ b/public/cheatsheet.html @@ -0,0 +1,288 @@ + + + + + + Impeccable Command Cheatsheet + + + + + + + + +
+

Impeccable Commands

+

Quick reference for all 17 design commands

+ ← Back to impeccable.style +
+ +
+

Loading commands...

+
+ + + + + + diff --git a/public/css/main.css b/public/css/main.css index 56643e7a2..dd115eeeb 100644 --- a/public/css/main.css +++ b/public/css/main.css @@ -406,6 +406,17 @@ code { max-width: 50ch; } +.cheatsheet-link { + color: var(--color-accent); + text-decoration: none; + font-size: 0.875rem; + margin-left: 0.5em; +} + +.cheatsheet-link:hover { + text-decoration: underline; +} + .section-lead { font-size: clamp(1.125rem, 2.5vw, 1.5rem); line-height: 1.5; diff --git a/public/index.html b/public/index.html index 091ede891..34b309c76 100644 --- a/public/index.html +++ b/public/index.html @@ -200,7 +200,7 @@
03

Commands in Action

-

See how commands transform your designs

+

See how commands transform your designs View cheatsheet →