Architecture
A short architecture page used to verify Atlas-pack rendering of multi-paragraph content with code blocks and inline code.
The system is composed of three layers:
- Ingest layer — accepts customer commits via webhook and reindexes the repo cache.
- Build layer — reads
site.json, applies the overlay, and emits a Nextra project tree. - Deploy layer — ships the tree to Vercel as a fresh deployment.
type Layer = "ingest" | "build" | "deploy";
function dispatch(commit: Commit, target: Layer): void {
// pack-aware routing happens here
}Inline code such as siteBranding.themePack should render in the Atlas-pack inline-code style (slightly different background tint than Forge).