Revert /architecture route from production; ship it as a standalone README doc#149
Merged
Conversation
)" This reverts commit d394545.
Self-contained docs/architecture.html (pure HTML/CSS/vanilla JS, no build step, no dependencies) visualizing the site's layered architecture, request lifecycle, automated content pipelines, and system-design principles — the same diagram as the reverted in-app route, but as documentation only, fully detached from the deployed site. Embeds a clickable preview banner (docs/architecture-preview.png) in README.md. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Why
PR #148 added an in-app
/architectureroute, which got merged and went live in production atbilalahamad.com/architecture. That was not intended — the architecture diagram should be an independent page for the README, not part of the deployed site.This PR fixes that:
What's in here
src/app/architecture/,src/components/architecture/, and the navbar / footer / sitemap entries. After merge,bilalahamad.com/architectureis gone and the app is back to its prior 8-route shape.docs/architecture.html— pure HTML/CSS/vanilla JS, no build step, no dependencies, not served by the Next.js app. Same content as before (layered stack with flowing data, request lifecycle, content/CI pipelines, 8 design principles), with CSS/JS animations and fullprefers-reduced-motionsupport.README.mdthat opens the rendered diagram (via htmlpreview.github.io) and links to the source.Verification
npm run buildclean after the revert — no/architectureroute, TypeScript strict passes.Production note
/architectureis currently live in production; merging this PR removes it on the nextmaindeploy.🤖 Generated with Claude Code