mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-22 02:56:52 +03:00
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 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.5
parent
d56a9fc746
commit
98e673b8f4
@@ -1,5 +1,6 @@
|
||||
import { serve, file } from "bun";
|
||||
import homepage from "../public/index.html";
|
||||
import cheatsheet from "../public/cheatsheet.html";
|
||||
import {
|
||||
getSkills,
|
||||
getCommands,
|
||||
@@ -14,6 +15,7 @@ const server = serve({
|
||||
|
||||
routes: {
|
||||
"/": homepage,
|
||||
"/cheatsheet": cheatsheet,
|
||||
|
||||
// Static assets - all public subdirectories
|
||||
"/assets/*": async (req) => {
|
||||
|
||||
Reference in New Issue
Block a user