Visual builder + i18n
Drag-and-drop blocks, real-time preview, and built-in translations across every page.
Multi-tenant CMS for modern teams
The CMS that combines a visual page builder, multilingual content, experimentation, and AI-powered insights into one place.
Drag-and-drop blocks, real-time preview, and built-in translations across every page.
Run experiments on copy and layout. Measure conversion lift without leaving the editor.
Catch SEO, accessibility, and performance issues before publish — automatically.
Capture leads with branded forms.
Define structured content models per tenant.
Optimize and serve images automatically.
Draft → review → publish, with custom states.
Notify external systems on every change.
Real-time core web vitals per page.
Render them visually in the editor. Zod schemas drive the props panel, your React components render in production. No proprietary templating language.
import { defineBlock } from "@glokki-cms/sdk"
import { z } from "zod"
import { Hero } from "./hero"
export const heroBlock = defineBlock({
type: "hero",
label: "Hero",
category: "content",
icon: "Sparkles",
propsSchema: z.object({
title: z.string(),
subtitle: z.string().optional(),
}),
defaultProps: { title: "" },
component: Hero,
})Free during beta · No credit card required