Rendering
The catch-all route, page component, metadata, layout, localized routing and ISR revalidation.
The catch-all route
A cmssy workspace stores content; your app renders it. One optional catch-all route - app/[[...path]]/page.tsx - maps every published slug (and its locale prefix) to a page. createCmssyPage fetches the page for the current path, matches each block to your registered component and renders it on the server.
The catch-all is statically renderable: it never reads
searchParamsorheaders(), so ISR stays on. Draft preview still works per-request throughdraftMode().