OG image + library README headers (Group D.1)#281
Merged
Conversation
Adds two brand-facing improvements:
1. apps/website/src/app/opengraph-image.tsx — dynamic 1200×630
PNG via Next.js ImageResponse, served at /opengraph-image. Picks
up automatically for every route via Next.js metadata convention;
per-route overrides can be added by dropping an opengraph-image
file in any route folder. Fetches Inter + JetBrains Mono via
Google Fonts at request time. Headline falls back to Inter Bold
(Satori does not decode woff2, and bundling EB Garamond TTF would
add ~250KB to the repo for marginal typography gain).
2. Library README headers:
- libs/render/README.md — was 3 lines of Nx scaffolding. Now has
a real intro, install command, capability summary, doc links.
- libs/chat/README.md — title changed from "chat" to
"@ngaf/chat — Drop-in agent chat UI for Angular 20+", and the
misleading "generated with Nx" boilerplate replaced with a real
one-line description. Body content unchanged.
Both READMEs are public on npmjs.com when their packages are published.
Root README + library badges + cacheplane.ai/assets/{hero,arch}.svg
intentionally untouched — they're dark-mode-friendly graphics that
work as a coherent GitHub-README aesthetic.
All 35 website e2e tests pass.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
4 tasks
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
Group D.1 of the post-merge brand sweep. Two brand-facing improvements:
1. Dynamic OG / social-share card
`apps/website/src/app/opengraph-image.tsx` — Next.js `ImageResponse` at `/opengraph-image`. 1200×630 PNG, picked up automatically by every route via the Next.js metadata convention. Per-page overrides can be added later by dropping an `opengraph-image` file in any route folder.
Renders the marketing hero headline, subhead, trust pills (MIT / LangGraph + AG-UI / Angular 20+), and the cacheplane.ai wordmark on the same subtle blue gradient used by the homepage hero. Fetches Inter + JetBrains Mono from Google Fonts at request time.
Note: EB Garamond (the marketing-site h1 typeface) is NOT loaded — Satori does not decode woff2 and bundling TTF would add ~250KB to the repo. Headline falls back to Inter Bold, which reads cleanly and stays on-brand.
2. Library README headers
What's NOT in this PR
Test plan
🤖 Generated with Claude Code