Project setup for the renderer
Pull the renderer into your project:
npm i cms-renderer
Decide where to resolve the renderer in your project:
src/
app/
[...slug]/
page.tsx
Our next js project is a simple catch all route
For a website that is structured like a documentation page, the page.tsx looks like
import NavbarBlock from '@/components/NavbarBlock';
import
Then we start creating pages, both parametric and static pages should work at this point.
Next steps