The short version, before the setup details.
What is Pagiera?
Pagiera is an open-source visual website builder distributed as an npm package for React and Next.js. It combines an editable responsive canvas, reusable components, layouts, page management and a server-rendered publishing runtime inside your application.
Is Pagiera free to use?
The Pagiera package is open source under the MIT license. Hosting, PostgreSQL, Redis, AI provider usage and other services can have separate costs. You are responsible for configuring and securing the application.
Is Pagiera a CMS?
For pages, yes. Pagiera stores every page as a document in your own PostgreSQL database, keeps drafts separate from published revisions, and gives non-developers a visual editor to change them — which is the job a CMS does. It is not a headless CMS in the content-modelling sense: you do not define arbitrary collections and query them over an API. Instead, pages bind to the APIs you already have through Request and Repeat blocks.
Can I use Pagiera as a CMS for a Next.js site?
Yes, and that is the common case. Install the package in your Next.js app, mount the editor behind your authentication, and render published documents on the server with pagiera/runtime. Marketing edits a page visually, previews the draft and publishes it; the content never leaves your infrastructure and no separate CMS service sits in the request path.
Is Pagiera a website builder or a developer tool?
Both, deliberately. Pagiera is an npm package a developer installs into a React and Next.js application, and the thing it installs is a visual editor that non-developers can use. The developer owns the integration; the editor is where the pages get designed.
How is Pagiera different from a hosted website builder?
A hosted builder keeps your pages on its own platform and serves them from its infrastructure. Pagiera runs inside your application: the documents live in your PostgreSQL database, the pages are rendered by your own Next.js server, and the package is MIT-licensed, so there is no vendor account between you and your site.