feat: add Projects (GitHub showcase) section#8
Merged
Conversation
New `/projects` section showcasing open-source GitHub projects, mirroring the Experience/Experiments architecture with a distinct `ShowcaseProject` entity. - Domain: ShowcaseProject type + guard, ShowcaseRepository (content/showcase), service methods, repository facade + interfaces - Routes: /projects index + /projects/[slug] detail (MDX), OG image, nav links - UI: ShowcaseGrid (search + tech filter, status/stars/forks, hero thumbnails) in the existing brutalist/terminal design system - Content: rich MDX writeups for hireloom, mcpx, claude-hindsight grounded in each repo's README (StatBlock/ProcessFlow/Terminal components) - Thumbnails: generated hero/OG images per project (public/images/blog) - SEO: sitemap + search API include showcase - Automation: GitHub Action (.github/workflows/update-showcase-stats.yml) + script to refresh stars/forks in frontmatter every 6h via the GitHub API Note: projects [slug] page sets blockJS:false so MDX expression-prop components (Terminal/StatBlock/ProcessFlow) render, matching the experiments page. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
|
Images automagically compressed by Calibre's image-actions ✨ Compression reduced images by 78.9%, saving 2.9 MB.
|
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
Adds a new Projects section at
/projectsto showcase open-source GitHub projects, mirroring the existing Experience/Experiments architecture with a distinctShowcaseProjectentity (no collision withProject, which models work experience).What's included
Domain & data
ShowcaseProjecttype + guard,ShowcaseRepository(readssrc/content/showcase/*.mdx), service methods, facade + interface wiringroutes.projects→/projects(repurposed an unused legacy alias)UI (existing brutalist/terminal design system)
/projectslisting withShowcaseGrid— search + tech-filter pills, status/featured badges, stars/forks/language, hero thumbnails/projects/[slug]MDX detail page + dynamic OG image + nav links (desktop + mobile)Content — rich MDX writeups grounded in each repo's README, using
StatBlock/ProcessFlow/Terminal:Thumbnails — generated hero/OG images per project (
public/images/blog/).SEO — sitemap + search API include showcase entries.
Automation — GitHub Action (
update-showcase-stats.yml) + script that refreshesstars/forksin frontmatter every 6h via the GitHub API (surgical line edits → minimal diffs; auto-tracks any new showcase.mdx).Notes
/projects/[slug]page setsblockJS: falseonMDXRemoteso expression-prop components (Terminal/StatBlock/ProcessFlow) render — matching the experiments page. Without it, array props are stripped and the components crash at prerender.Verification
pnpm type-check✓pnpm lint✓pnpm build✓ —/projects+ all 3 detail pages + OG images prerender🤖 Generated with Claude Code