Content Pages
Simple CMS for static pages like About, FAQ, Terms of Service, and similar.
- Each page has a
title,slug,body(rich text), and optionalimageUrl publishedflag controls storefront visibility- Multi-language support via
content_page_translations
// Create a page
await contentPageService.create({
title: "About Us",
slug: "about-us",
body: "Welcome to our store...",
published: true
});The body field stores rich text HTML from the Tiptap editor in the admin panel.
Last updated on