feat: ship projects cube — 6-face interactive ecosystem map#38
Merged
Conversation
Replaces the flat project-card grid with a 3D rotating cube where each face is one ecosystem facet (Architect, Build, Verify, Trace, Run, Agent). Drag to rotate, click a face button to navigate to the corresponding side, click a face for the detail panel. The template + cube.js were authored alongside the projects revamp work done over recent sessions; the light-mode pass already updated the template's structural colors to use var(--surface)/var(--border-subtle) etc., so cube faces render as cream paper sheets in light mode and as the dark navy surface in dark mode. Per-face accent colors (Architect blue, Build cyan, Verify green, Trace amber, Run red, Agent purple) stay hardcoded — they're semantic identifiers, not theme tokens. - Add templates/projects.html (cube template with embedded CSS + face content) - Add static/cube.js (drag-to-rotate, face nav, detail-panel logic) - Switch content/projects/_index.md template field from section.html to projects.html (was the only thing holding this back from shipping, kept local during cleanup) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replaces the flat project-card grid on /projects/ with a 3D rotating cube where each face is one ecosystem facet:
Drag to rotate. Click a face button (top of page) to snap to a face. Click a face for the detail panel.
Why now
This template + the JS were written alongside the projects-revamp work over recent sessions, then kept WIP-local while we shipped other things. The light-mode pass (#37) already updated the template's structural colors to `var(--surface)` / `var(--border-subtle)` — so cube faces render as cream paper sheets in light mode, dark navy surface in dark mode. Per-face accent colors stay hardcoded (semantic identifiers per face, not theme tokens).
The only thing holding this back from prod was `content/projects/_index.md` still pointing at `template = "section.html"`. This PR flips that to `template = "projects.html"` and adds the two new files.
Files
Test plan
🤖 Generated with Claude Code