mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-11 21:57:14 +03:00
* feat(site): scaffold Astro migration, convert 3 pages Phase 1+2 of the Astro migration: - Astro v6.2.1 installed, srcDir: 'site', static output to build/ - Shared layout: Base.astro (head, fonts, meta, slots), Header.astro (star count in one place: 23k), Footer.astro - CSS moved from public/css/ to site/styles/ (9 files, @import chains resolve via Vite) - Three pages converted: privacy, cases/neo-mirai, live-mode (all return 200 on astro dev) Remaining: designing, slop, homepage, content collections (docs), JS migration, server/index.js deletion, build.js cleanup. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(site): migrate all 6 main pages to Astro Converts the remaining pages: - designing/index.html → site/pages/designing/index.astro (551 lines) - slop/index.html → site/pages/slop/index.astro (909 lines) - index.html → site/pages/index.astro (1278 lines, the homepage) Base.astro gains OG meta tag props, before-header/after-header slots (for grain overlay and section nav), and configurable mainId. Homepage uses link tags to public/css/ instead of frontmatter CSS imports to avoid esbuild choking on :has() in main.css. Curly braces inside <code> elements (CSS snippets in changelog) escaped with HTML entities to prevent Astro JSX expression parsing. All 6 pages return 200 on astro dev. Branch: feat/astro-migration. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(site): content collections for docs and tutorials Replaces the 1532-line build-sub-pages.js generator with Astro v6 content collections: - 24 skill editorial files move to site/content/skills/ - 4 tutorial files move to site/content/tutorials/ - site/content.config.ts defines both collections with glob loaders - site/pages/docs/[...slug].astro reads skills collection + command metadata from source/skills/ at build time - site/pages/docs/index.astro renders the command grid grouped by category (create, evaluate, refine, simplify, harden, system) - site/pages/tutorials/ mirrors the pattern with ordered index - Doc.astro layout provides sidebar nav, breadcrumbs, and related- command chips from the COMMAND_RELATIONSHIPS data - Category/relationship data extracted to site/data/sub-pages-data.ts All 15 tested pages return 200: 6 main pages + 5 docs + 2 tutorials + 2 index pages. The old generator is not yet deleted (Task #6). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(site): move JS source from public/js/ to site/scripts/ Moves all 49 JS files (app.js + 48 in js/) into site/scripts/. Vite now processes them through its module bundler instead of serving them raw from public/. app.js import paths updated from ./js/X to ./X (the js/ nesting is gone since app.js now lives alongside the subdirectories). Homepage and live-mode page switch from <script is:inline src="/app.js"> to Vite-processed <script> imports, so tree-shaking, bundling, and minification happen automatically at build time. public/js/ still exists for now (cleanup in Task #6) and the generated/counts.js build output path needs updating there too. @paper-design/shaders added to npm dependencies (was missing). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * refactor(site): delete old Bun server, generator, and duplicated files Cleanup after the Astro migration: Deleted: - server/index.js (233 lines, replaced by `astro dev`) - scripts/build-sub-pages.js (1532 lines, replaced by content collections) - scripts/lib/render-page.js (247 lines, replaced by Base.astro layout) - content/site/partials/header.html (replaced by Header.astro component) - public/index.html, privacy.html, designing/, live-mode/, cases/ (replaced by .astro pages in site/pages/) - public/css/ (moved to site/styles/) - public/js/ old source files (moved to site/scripts/) - public/app.js (moved to site/scripts/app.js) Kept in public/: - antipattern-examples/ (standalone HTML demos, not Astro pages) - antipattern-images/, assets/, neo-mirai/ (static assets) - js/detect-antipatterns-browser.js (referenced by antipattern examples) - js/generated/counts.js (build output from scripts/build.js) - _data/api/ (generated API data, now written to public/ so Astro passes it through to build/) Updated: - astro.config.mjs: added redirects (skills->docs, cheatsheet->docs, gallery->slop, neon-mirai->neo-mirai, etc.) - package.json: dev->astro dev, build->build:skills+build:site, preview->astro preview - scripts/build.js: removed buildStaticSite(), generateSubPages(), static-asset copying. API data writes to public/_data/ instead of build/_data/. Site-header validator is a no-op (shared component). Em-dash validator scans site/components + site/layouts, not pages (pages contain content from other sources like detector descriptions). - .gitignore: removed public/slop/ entry Tests: 186/186 pass. Skills build: clean. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(site): fix redirect config for Astro compatibility Move the dynamic /skills/:id -> /docs/:id redirect to public/_redirects (Cloudflare Pages native format) since Astro's redirect config can't handle dynamic routes that don't match existing page patterns. Remove duplicate trailing-slash redirect entries that caused warnings. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(site): switch remaining pages from /css/ link tags to frontmatter imports Doc.astro, docs/index, tutorials/index, and tutorials/[slug] were still using <link href="/css/sub-pages.css"> which pointed at the deleted public/css/ directory. Switched to frontmatter CSS imports (import '../../styles/sub-pages.css') which Vite resolves from site/styles/. Homepage also switches from link tags to frontmatter imports for main.css and sub-pages.css — the esbuild error that originally forced the link-tag workaround was caused by unescaped curly braces in the HTML content (since fixed), not by the CSS itself. All pages verified visually in Chrome: homepage hero, foundation grid, docs index (card grid with categories), docs detail (sidebar + editorial content + visual mockups), designing (core loop diagram), privacy, tutorials. Header renders with 23k stars on every page. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(site): fix edge-to-edge sections, broken API paths, CSS links Three fixes: 1. Homepage sections sat on the viewport edge because Base.astro's <main> lacked the site-content class (provides max-width + padding). Added mainClass prop to Base.astro; homepage sets mainClass="site-content". 2. "Failed to load commands" because app.js fetched /api/commands which only existed in the old Bun server's routing. Updated to fetch from /_data/api/commands.json (the static JSON files that build:skills writes to public/_data/). 3. CSS reference fix (previous commit was incomplete): Doc.astro, docs/index, tutorials pages all used <link href="/css/sub-pages.css"> pointing at deleted public/css/. Switched to frontmatter imports. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(site): add sidebar to docs index page The docs index was using Base.astro directly without the skills-layout grid, so it rendered without a sidebar. Added the same sidebar structure from Doc.astro (category-grouped command list) and wrapped the content in the skills-layout grid. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(site): extract footer CSS to shared file, import in Base.astro Footer was unstyled on sub-pages because footer CSS lived only in main.css (loaded by the homepage) not in sub-pages.css. Extracted the 95 lines of footer rules into site/styles/footer.css and imported it in Base.astro so every page gets footer styles regardless of which page-specific CSS it loads. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(demos): move landing-demo into repo, add as slop specimens Moves ~/code/landing-demo/ into demos/landing-demo/ (without node_modules or the redundant .claude/.agents skill copies — the repo root's skill is found by walking up). PRODUCT.md, DESIGN.md, DESIGN.json, PROMPT.md, and SCRIPT.md stay in place so running Claude from demos/landing-demo/ picks up the project context. Also copies both pages as slop specimens to public/antipattern-examples/ with the detector script baked in: - new-slop-2026.html (Fraunces + warm cream editorial monoculture) - old-slop-2022.html (purple gradient + glassmorphism + neon glow) These can be linked from the slop page gallery alongside the existing 11 synthetic specimens. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(slop): replace single demo iframe with Then vs Now comparison The "See it" section (01) on the slop page now shows two side-by-side browser frames: 2022 slop (purple gradients, glassmorphism, neon glow) and 2026 slop (Fraunces, warm cream, editorial restraint). Both run the detector overlay live — hover either to see which rules fire. Replaces the single visual-mode-demo.html iframe. Responsive: stacks vertically on viewports below 900px. Caption: "Same engine, different decade, both flagged." Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(slop): switch to single-frame era toggle, center the section Replaces the side-by-side dual-iframe layout with a single large frame and a segmented 2022/2026 toggle. Clicking the toggle swaps which iframe is visible (both pre-loaded, instant switch). Browser chrome title updates to match the active era. Centers the lede text and toggle above the frame for visual cohesion with the full-width iframe below. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(slop): left-align See It section, toggle inline with lede Moves the era toggle to the right of the lede paragraph using a flex row (align-items: flex-end). Left-aligned text + right-docked toggle matches the rest of the page's flow instead of standing out as a centered island. Stacks vertically on narrow viewports. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(slop): left-align iframe, remove max-width and auto margin The visual-mode-preview had max-width: 1040px + margin: 0 auto which centered it within the column. Override both in the .slop-then-now context so the frame fills the full content width flush with the text above. Caption left-aligned to match. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore(site): update star count to 24k (24,062) One file, one edit. The Astro migration working as intended. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(build): regenerate pnpm-lock.yaml for astro + shaders deps Cloudflare Pages uses pnpm with frozen-lockfile. The lockfile was stale after adding astro, @astrojs/cloudflare, and @paper-design/shaders via npm. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(build): resolve 3 bugbot review issues 1. Restore public/slop/ to .gitignore — prevents accidental legacy generator output from conflicting with the Astro page. 2. Move astro and @paper-design/shaders to devDependencies — these are site-build tools, not CLI runtime deps. Removes @astrojs/cloudflare entirely (unused; static output mode needs no adapter). 3. Fix Astro wiping build:skills output — CF config (_headers, _redirects, _routes.json) and API data now write to public/ so Astro copies them through. Dist ZIPs copy to build/_data/dist/ as a post-build step (after Astro finishes). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(build): merge duplicate devDependencies, use npx for astro CLI The previous commit created a second devDependencies key in package.json. JSON doesn't support duplicate keys — pnpm ignored the first block (with astro), so `astro build` wasn't found. Merged astro and @paper-design/shaders into the existing devDependencies block. Changed `astro build/dev/preview` to `npx astro build/dev/preview` so pnpm finds the local binary on Cloudflare Pages (which doesn't add node_modules/.bin to PATH by default). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(demos): remove private demo script and prompt from public repo SCRIPT.md contained a detailed conference talk script with personal delivery strategies, rehearsed Q&A answers, and venue details. PROMPT.md contained the origin brief for the demo page. Neither belongs in a public repo. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(build): gitignore generated public/ artifacts, consolidate redirects 1. Generated files written to public/ by build:skills (API data, CF config, browser detector, counts.js) are now gitignored. Prevents noisy diffs and merge conflicts from committed build artifacts. 2. Removed duplicate redirects from astro.config.mjs. All redirects now live in one place: the _redirects file generated by scripts/build.js (which Cloudflare Pages processes natively). Eliminates the dual-maintenance risk where the two sources could drift apart. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
208 lines
9.5 KiB
Markdown
208 lines
9.5 KiB
Markdown
---
|
||
name: Lumina
|
||
description: Editorial-warm landing page for an AI-native workflow tool.
|
||
colors:
|
||
cream: "#faf6ef"
|
||
cream-warm: "#f4ebdc"
|
||
peach: "#f6dfcb"
|
||
line: "#e6dccb"
|
||
ink: "#1f1a15"
|
||
soft: "#5b4f44"
|
||
accent: "#c8552b"
|
||
accent-deep: "#a8431f"
|
||
typography:
|
||
display:
|
||
fontFamily: "Fraunces, Georgia, serif"
|
||
fontSize: "clamp(3rem, 7vw, 5.5rem)"
|
||
fontWeight: 400
|
||
lineHeight: 1.05
|
||
letterSpacing: "-0.02em"
|
||
headline:
|
||
fontFamily: "Fraunces, Georgia, serif"
|
||
fontSize: "clamp(2.25rem, 4.5vw, 3.25rem)"
|
||
fontWeight: 400
|
||
lineHeight: 1.1
|
||
letterSpacing: "-0.02em"
|
||
title:
|
||
fontFamily: "Fraunces, Georgia, serif"
|
||
fontSize: "1.375rem"
|
||
fontWeight: 500
|
||
lineHeight: 1.3
|
||
letterSpacing: "-0.01em"
|
||
body:
|
||
fontFamily: "Inter, system-ui, sans-serif"
|
||
fontSize: "1rem"
|
||
fontWeight: 400
|
||
lineHeight: 1.55
|
||
letterSpacing: "normal"
|
||
lede:
|
||
fontFamily: "Inter, system-ui, sans-serif"
|
||
fontSize: "1.25rem"
|
||
fontWeight: 400
|
||
lineHeight: 1.55
|
||
letterSpacing: "normal"
|
||
label:
|
||
fontFamily: "Inter, system-ui, sans-serif"
|
||
fontSize: "0.75rem"
|
||
fontWeight: 600
|
||
lineHeight: 1.4
|
||
letterSpacing: "0.16em"
|
||
rounded:
|
||
card: "20px"
|
||
icon: "14px"
|
||
pill: "999px"
|
||
spacing:
|
||
xs: "8px"
|
||
sm: "16px"
|
||
md: "24px"
|
||
lg: "32px"
|
||
xl: "56px"
|
||
2xl: "80px"
|
||
3xl: "120px"
|
||
components:
|
||
button-primary:
|
||
backgroundColor: "{colors.ink}"
|
||
textColor: "{colors.cream}"
|
||
rounded: "{rounded.pill}"
|
||
padding: "14px 28px"
|
||
button-ghost:
|
||
backgroundColor: "transparent"
|
||
textColor: "{colors.ink}"
|
||
rounded: "{rounded.pill}"
|
||
padding: "14px 28px"
|
||
nav-pill:
|
||
backgroundColor: "{colors.ink}"
|
||
textColor: "{colors.cream}"
|
||
rounded: "{rounded.pill}"
|
||
padding: "9px 18px"
|
||
card:
|
||
backgroundColor: "{colors.cream-warm}"
|
||
textColor: "{colors.soft}"
|
||
rounded: "{rounded.card}"
|
||
padding: "40px 32px"
|
||
icon-tile:
|
||
backgroundColor: "{colors.cream}"
|
||
rounded: "{rounded.icon}"
|
||
size: "56px"
|
||
---
|
||
|
||
# Design System: Lumina
|
||
|
||
## 1. Overview
|
||
|
||
**Creative North Star: "Editorial confidence in warm light."**
|
||
|
||
The system reads as a printed magazine spread, transposed to a screen. Cream paper as the page surface, ink-dark headlines in Fraunces, restrained pacing carried by whitespace. Density is mid. The accent (a burnt orange warming toward the lower stop of the cream-to-peach hero gradient) appears sparingly: on the eyebrow chip, the logo dot, and the italic emphasis inside the hero headline. Nowhere else.
|
||
|
||
What the system explicitly rejects, per PRODUCT.md anti-references: glassmorphism, dark mode with neon glow, gradient text, side-stripe accents on cards, and the broader "Fraunces-cream-peach SaaS template" that this very page exemplifies. The DESIGN.md documents the current visual reality so the live-mode design panel can render it accurately. The brand intent is to diffuse away from it.
|
||
|
||
**Key Characteristics:**
|
||
- Warm-paper palette anchored on cream (#faf6ef)
|
||
- Display in Fraunces, body in Inter
|
||
- Editorial-leaning layout vocabulary
|
||
- Rounded throughout (14px, 20px, 999px)
|
||
- Flat: no shadows, depth via tonal layering
|
||
|
||
## 2. Colors
|
||
|
||
A single warm-cream family carrying both surface and neutral text, with one muted-orange accent that earns its rare appearances.
|
||
|
||
### Primary
|
||
- **Burnt Orange Accent** (#c8552b): the eyebrow chip's color, the logo dot, the italic emphasis inside the hero headline. Decorative; never a surface, never a button background.
|
||
- **Accent Deep** (#a8431f): the darker variant for hover and emphasis states; same hue, a step deeper.
|
||
|
||
### Neutral
|
||
- **Cream** (#faf6ef): the page surface, the nav background (translucent), and the bottom of the hero gradient.
|
||
- **Cream Warm** (#f4ebdc): the feature card surface; one shade darker than cream, anchors the card group as a contained set.
|
||
- **Peach** (#f6dfcb): the warmer stop of the hero gradient. Atmospheric, not structural.
|
||
- **Ink** (#1f1a15): primary body text; primary-button background; the dark CTA section's surface.
|
||
- **Soft** (#5b4f44): secondary text; captions; footer copy; nav link rest state.
|
||
- **Line** (#e6dccb): hairline borders on cards, the nav, the footer, and the icon tiles.
|
||
|
||
### Named Rules
|
||
**The Cream-Family Rule.** Every neutral surface tints toward the brand hue. No pure white anywhere, no pure black, no untinted gray. The eye should never read this page as "default browser."
|
||
|
||
**The 10% Accent Rule.** The burnt orange covers no more than 10% of any rendered surface. Its rarity is the point.
|
||
|
||
## 3. Typography
|
||
|
||
**Display Font:** Fraunces (Georgia fallback, serif)
|
||
**Body Font:** Inter (system-ui fallback, sans-serif)
|
||
|
||
**Character:** A magazine-cover serif for the headlines and brand mark, paired with a refined sans for everything else. The italic Fraunces inside `<em>` is the system's only italic, used exactly once per page on a single word inside the hero headline.
|
||
|
||
### Hierarchy
|
||
- **Display** (Fraunces, clamp(48px, 7vw, 88px), weight 400, line-height 1.05, letter-spacing -0.02em): hero headlines only.
|
||
- **Headline** (Fraunces, clamp(36px, 4.5vw, 52px), weight 400, line-height 1.1): section headlines.
|
||
- **Title** (Fraunces, 22px, weight 500, letter-spacing -0.01em): card headings.
|
||
- **Lede** (Inter, 20px, weight 400, line-height 1.55): the supporting paragraph below a hero headline.
|
||
- **Body** (Inter, 15–18px, weight 400, line-height 1.55): default paragraph copy. Cap line length at 65–75ch.
|
||
- **Label** (Inter, 12px, weight 600, letter-spacing 0.16em, uppercase): the eyebrow chip and any small uppercase labels.
|
||
|
||
### Named Rules
|
||
**The One-Italic Rule.** Italic appears exactly once per page: on a single emphasized word inside the hero headline. Nowhere else. The logo strip's italic Fraunces wordmarks are the exception that proves it (wordmark, not running italic).
|
||
|
||
**The No-Gradient-Text Rule.** Type is solid color, always. The hero's cream-to-peach gradient is a section background, never a typographic effect.
|
||
|
||
## 4. Elevation
|
||
|
||
Flat. No shadows on cards, buttons, surfaces, or any rendered element. Depth is conveyed by three things and only those:
|
||
|
||
- **Tonal layering**: cream (page) sits below cream-warm (cards), which sit below ink (the dark CTA section).
|
||
- **Hairline borders**: 1px line color (`--line`) on every contained surface.
|
||
- **Sticky-nav backdrop blur**: the only blur in the system, marking the nav as living above content.
|
||
|
||
### Named Rules
|
||
**The Flat-By-Default Rule.** Surfaces are flat at rest. Hover lift uses `transform: translateY(-1px)`, never a shadow. Glassmorphism, neon glow, and elevation halos are absent by design.
|
||
|
||
## 5. Components
|
||
|
||
### Buttons
|
||
- **Shape:** fully rounded (border-radius: 999px). The full-size variant is 14px 28px padding; the smaller nav pill is 9px 18px.
|
||
- **Primary** (`.btn-primary`, `.pill`): background ink, text cream. The primary CTA on every section.
|
||
- **Ghost** (`.btn-ghost`): transparent background, ink 1px border, ink text. Secondary CTA, always paired with primary.
|
||
- **Hover:** translateY(-1px), 150ms ease.
|
||
- **Inverted Primary** (`.cta-section .btn-primary`): background cream, text ink. Used because the dark CTA section reverses the surface contrast.
|
||
|
||
### Cards (Feature Tiles)
|
||
- **Corner Style:** 20px rounded (less than pill, more than container).
|
||
- **Background:** cream-warm (`--cream-warm`), one shade darker than the surrounding cream surface.
|
||
- **Border:** 1px line color.
|
||
- **Internal Padding:** 40px 32px (generous; cards breathe).
|
||
- **Shadow:** none, see Elevation.
|
||
|
||
### Icon Tile (inside Cards)
|
||
- **Size:** 56×56px.
|
||
- **Background:** cream (`--cream`).
|
||
- **Border:** 1px line color.
|
||
- **Corner Style:** 14px rounded.
|
||
- **Position:** centered above the card heading, 24px bottom margin.
|
||
|
||
### Eyebrow Chip
|
||
- **Style:** uppercase Inter, 12px, weight 600, letter-spacing 0.16em, color accent-deep (#a8431f). No background or border — pure typographic label.
|
||
- **Position:** standalone above the hero `<h1>`, with 32px bottom margin.
|
||
|
||
### Navigation
|
||
- **Background:** translucent cream (`rgba(250, 246, 239, 0.85)`) with `backdrop-filter: blur(10px)`. Sticky to the top.
|
||
- **Border:** 1px line color at the bottom edge.
|
||
- **Links:** 14px Inter, weight 400, color soft (rest), color ink (hover). The trailing pill CTA uses the nav-pill component.
|
||
|
||
### Logo Strip
|
||
- **Items:** Fraunces italic, 22px, color soft. Six wordmarks, justified across a single row, separated by hairline borders top and bottom.
|
||
|
||
## 6. Do's and Don'ts
|
||
|
||
### Do:
|
||
- **Do** keep the burnt-orange accent under 10% of any visible surface; it's a typographic accent and a logo dot, not a button.
|
||
- **Do** use Fraunces for display and Inter for body; respect the One-Italic Rule.
|
||
- **Do** carry depth via tonal layering and hairline borders, not shadows.
|
||
- **Do** tint every neutral toward the cream hue. Reject pure white and pure gray.
|
||
- **Do** keep buttons fully rounded (999px) and cards moderately rounded (20px); the contrast is intentional.
|
||
|
||
### Don't:
|
||
- **Don't** add box-shadows to surfaces. The system is flat by default; hover lift uses transform, not shadow.
|
||
- **Don't** introduce gradient text or `background-clip: text`. The hero gradient is a section background, never a typographic effect.
|
||
- **Don't** add glassmorphism, neon glow, dark mode by default, or side-stripe colored borders — all banned in PRODUCT.md anti-references.
|
||
- **Don't** introduce a fourth color outside the cream / ink / orange family without an explicit reason recorded in PRODUCT.md.
|
||
- **Don't** drift into the broader "Fraunces-cream-peach SaaS template" the page already exemplifies. The PRODUCT.md anti-references this aesthetic; departure-mode variants should diffuse away from it.
|