Developer API
Generate Open Graph images programmatically
Every template in the editor is available through a simple API. Request an image with one HTTP GET and get a PNG back, or render entirely in the browser with the SDK — fully customizable: any template, preset, slot, background, typography, logo, and platform size.
Quick start
The fastest path — pass a template id and any content as query params:
# Returns image/png (2× the platform size)
curl -L "https://freeogimage.com/api/og?template=saas-dark&preset=ember&title=Ship+faster" -o card.pngUse it directly as your share image in HTML:
<meta property="og:image" content="https://freeogimage.com/api/og?template=gradient-mesh&title=Hello+world" />
<meta name="twitter:card" content="summary_large_image" />For full control (backgrounds, typography, logo, every slot), encode a JSON config — see the config schema and the SDK.
Prefer to design visually first? Build your card in the editor, then hit Get API to copy the exact GET URL, POST curl, and SDK call for your current design.
HTTP endpoint
GET https://freeogimage.com/api/og — renders a config and responds with image/png. Two ways to supply the config:
| Param | Type | Notes |
|---|---|---|
config | base64url(JSON) | A full OgImageConfig (see below). Takes precedence over the convenience params. |
template | string | Template id (required if no config). See the reference below. |
preset | string | Preset id; defaults to the template's default preset. |
platform | string | Output size id (og, twitter, linkedin, facebook, square). Default og. |
title | string | Convenience: fills the template's preview title slot (often `title`). An explicit slot.<id> wins. |
description | string | Convenience: fills the template's preview description slot (often `subtitle`, not literally `description`). |
slot.<id> | string | Set any slot by its exact id (see the template reference), e.g. slot.badge=New. |
- Response: a PNG at 2× the platform size (e.g. og 1200×630 → 2400×1260).
Cache-ControlandAccess-Control-Allow-Origin: *are set so it works in<img>, meta tags, and cross-origin fetches. - Errors: an invalid config returns
400with a plain-text reason (e.g. unknown template/preset/platform). - Limits: rate-limited per IP (the limit applies to every request, including cache hits) and cached by config hash so repeats skip re-rendering. Be reasonable — it runs on a small box.
- Images: for SSRF safety the service does not fetch external image URLs. Pass images for image/logo/background slots as
data:URLs (use aPOSTJSON body for large ones), or use the in-browser SDK (which can loadhttps:images in the user's own browser). - Privacy: the service renders your config and discards it. No configs, URLs, or images are stored or logged. Nothing leaves the render.
Config schema
One shape powers the endpoint, the SDK, and the ?config= deep link. It layers exactly like the editor: template defaults → preset → your slots/globals.
interface OgImageConfig {
template: string; // required — a template id (see reference below)
preset?: string; // a preset id; default = the template's default preset
platform?: "og" | "twitter" | "linkedin" | "facebook" | "square"; // default "og"
slots?: { [slotId: string]: string }; // per-template content (see each template's slots)
globals?: DeepPartial<GlobalOptions>; // styling overrides — see "Global options"
}Unknown slot ids and unknown global keys are ignored (forward-compatible). A missing or unknown template, preset, or platform is a 400.
Global options
globals is a deep-partial of the editor's global controls. Only the keys a template supports (listed per template below) take effect.
interface GlobalOptions {
background:
| { kind: "solid"; color: string }
| { kind: "gradient"; gradient: { type: "linear"|"radial"|"conic"; angle?: number;
stops: { color: string; pos: number }[] } }
| { kind: "mesh"; stops: { color: string; pos: number }[]; seed?: number }
| { kind: "grid"; base: string; grid: { kind: "dots"|"lines"|"iso"|"blueprint";
size: number; color: string; opacity: number } }
| { kind: "image"; src: string; fit: "cover"|"contain"; overlay?: string }; // src: data: URL (https: only via the SDK)
typography: { fontFamily: "inter"|"grotesk"|"mono"|"serif"; weightTitle: number;
weightBody: number; titleSize?: number; letterSpacing?: number;
textColor: string; align: "left"|"center"|"right" };
logo: { src?: string; position: "top-left"|"top-right"|"bottom-left"|"bottom-right"|"none";
size: number; rounded?: boolean }; // src: data: URL (https: only via the SDK)
noise: { enabled: boolean; opacity: number }; // 0..1
vignette: { enabled: boolean; strength: number }; // 0..1
padding: number; // safe-area inset (px)
}Platform sizes
| id | Label | Logical | Exported (2×) |
|---|---|---|---|
og | Open Graph | 1200×630 | 2400×1260 |
twitter | X / Twitter | 1600×900 | 3200×1800 |
linkedin | 1200×627 | 2400×1254 | |
facebook | 1200×630 | 2400×1260 | |
square | Square | 1080×1080 | 2160×2160 |
Fonts
Self-hosted fonts only. Use one of these keys for globals.typography.fontFamily:
inter — Intergrotesk — Space Groteskmono — JetBrains Monoserif — Source Serifoswald — Oswaldnunito — Nunitoplayfair — Playfair DisplayIn-browser SDK
Prefer to generate on the client with no network call at all? The same render path the editor uses is exposed as renderOgImage. Nothing is uploaded — the PNG is produced entirely in the browser.
import { renderOgImage } from "@/lib/og/render";
const dataUrl = await renderOgImage({
template: "saas-dark",
preset: "ember",
slots: { title: "Ship faster", subtitle: "One fast workspace for your team." },
});
// -> "data:image/png;base64,..." (also: { format: "blob" } for a Blob)Build a stable image URL without rendering yourself with ogImageUrl(config) (from @/lib/og/config).
Worked examples
Encoded full-config URLs (copy & open):
Dark SaaS card
https://freeogimage.com/api/og?config=eyJ0ZW1wbGF0ZSI6InNhYXMtZGFyayIsInByZXNldCI6ImVtYmVyIiwic2xvdHMiOnsidGl0bGUiOiJTaGlwIGZhc3RlciB3aXRoIFRhc2tsYW5lIiwic3VidGl0bGUiOiJPbmUgZmFzdCB3b3Jrc3BhY2UgZm9yIHlvdXIgd2hvbGUgcHJvZHVjdCB0ZWFtLiJ9fQCustom gradient + centered type
https://freeogimage.com/api/og?config=eyJ0ZW1wbGF0ZSI6ImdyYWRpZW50LW1lc2giLCJwbGF0Zm9ybSI6Im9nIiwic2xvdHMiOnsiYmFkZ2UiOiJOb3cgaW4gYmV0YSIsInRpdGxlIjoiSW50cm9kdWNpbmcgTm9ydGh3aW5kIEFuYWx5dGljcyJ9LCJnbG9iYWxzIjp7ImJhY2tncm91bmQiOnsia2luZCI6ImdyYWRpZW50IiwiZ3JhZGllbnQiOnsidHlwZSI6ImxpbmVhciIsImFuZ2xlIjoxMjAsInN0b3BzIjpbeyJjb2xvciI6IiMwZWE1ZTkiLCJwb3MiOjB9LHsiY29sb3IiOiIjN2MzYWVkIiwicG9zIjoxMDB9XX19LCJ0eXBvZ3JhcGh5Ijp7ImFsaWduIjoiY2VudGVyIn19fQTemplate reference
Every template, its presets, and its slots. Open any of these in the gallery to preview.
General (27)
Announcement announcement
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA press announcement card: an 'Announcing' badge, a bold statement headline, a supporting subline, an accent divider, and a date + source row with an optional read CTA.
Presets: press (default), daylight, accent
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 18 | Announcing |
title | multiline | yes | 60 | Introducing Our Next Chapter |
subtitle | text | — | 90 | A faster, simpler way to create — now available to everyone. |
date | text | — | 24 | June 2026 |
source | text | — | 30 | Northwind Newsroom |
cta | text | — | 22 | Read the release |
Bauhaus bauhaus
supports: background, typography, logo, platform, noiseA geometric-modernist card: large flat primary-color primitives (circle, triangle, quarter-arc, bar) balanced around a clean central column with a heavy grotesk headline.
Presets: primary (default), mono, cobalt
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Form Follows Function |
title | text | yes | 48 | Composition in Primary |
subtitle | multiline | — | 120 | Flat shapes, primary color, and type with nothing to hide. |
tag | text | — | 30 | studio · est. 1919 |
Big Stat big-stat
supports: background, gradient, grid, typography, logo, platform, noise, vignetteAn oversized single-metric KPI card: one giant hero number with an eyebrow, a colored up/down delta chip, a label, a short context line, and a small drawn sparkline.
Presets: spotlight (default), money, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Last 30 days |
value | text | yes | 16 | $1.2M |
delta | text | — | 16 | +18.4% |
trend | text | — | 8 | up |
label | text | — | 50 | Monthly recurring revenue |
context | multiline | — | 110 | Steady growth across every plan tier compared with the prior period. |
Blueprint blueprint
supports: background, grid, typography, logo, platform, noiseA technical engineering-drawing card: a drawing-number eyebrow and drafted title over a graph-paper surface framed with thin SVG line-work — corner registration marks, a dimension line, a title block, and small mono spec chips.
Presets: cyanotype (default), draft, carbon
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | DWG-014 · REV A |
title | text | yes | 46 | Modular Shelving System |
subtitle | multiline | — | 120 | Precision-engineered components with tight tolerances and clean assembly. |
spec | text | — | 90 | SCALE 1:20 | UNITS MM | SHEET 1/4 |
Neo-Brutalist brutalist
supports: background, typography, logo, platformA flat, raw, high-contrast neo-brutalist card: an accent-blocked badge pill, a huge heavy headline, a plain subtitle block, and a footer tag chip, all framed by a thick border with a hard offset drop shadow.
Presets: paper (default), acid, ink
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 24 | Now Shipping |
title | text | yes | 60 | Build loud. Ship louder. |
subtitle | multiline | — | 130 | No gradients. No noise. Just thick borders and hard shadows. |
tag | text | — | 40 | freeogimage.com / studio |
Chalkboard chalkboard
supports: background, typography, logo, platform, noise, vignetteA hand-lettered chalkboard sign: an elegant serif title flanked by drawn chalk flourishes, with a small uppercase eyebrow, a subtitle, and a footer line in soft cream chalk.
Presets: slate (default), green-board, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Est. Corner Cafe |
title | text | yes | 44 | Today's Special |
subtitle | multiline | — | 120 | Slow-roasted house blend, baked fresh each morning. |
footer | text | — | 40 | Open daily · 7am - 6pm |
Chrome Type chrome-type
supports: background, typography, logo, platform, noise, vignetteY2K liquid-metal headline rendered as polished, reflective chrome on a dark glow.
Presets: silver (default), aqua, sunset
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Now playing |
title | text | yes | 36 | Chrome Dreams |
subtitle | multiline | — | 110 | A short reflective tagline |
Claymorphism claymorphism
supports: background, typography, logo, platformA soft 3D "clay" card: a big puffy rounded panel with layered highlight + drop + inset shadows on a pastel background, holding a squishy badge pill, a friendly heavy headline, a subtitle, and a clay tag chip.
Presets: bubble (default), mint-clay, peach
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 24 | New & shiny |
title | text | yes | 44 | Soft, squishy & friendly |
subtitle | multiline | — | 120 | A tactile, toy-like clay look with layered puffy shadows. |
tag | text | — | 30 | made with claymorphism |
Comic Pop comic-pop
supports: background, typography, logo, platformA comic-book pop-art card: a spiky burst badge and an outlined punchy title over radiating action rays and a Ben-Day halftone dot texture, with an optional speech-bubble subtitle.
Presets: pow (default), boom, zap
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
burst | text | — | 16 | POW! |
title | text | yes | 44 | Big news, bigger impact |
subtitle | multiline | — | 110 | Drop a punchy line in the speech bubble. |
Comparison comparison
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA side-by-side "us vs them" comparison card: a headline over two labeled columns whose per-side check / cross / verbatim-text marks are derived independently from each "Feature | them | us" row, plus a verdict pill.
Presets: contrast (default), clean, bold
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
title | text | yes | 48 | Why teams switch to us |
leftLabel | text | — | 22 | The old way |
rightLabel | text | — | 22 | Acme |
rows | multiline | — | 200 | Realtime sync | no | yes Works offline | no | yes Unlimited seats | $$ | yes Email support | yes | yes |
verdict | text | — | 40 | Acme wins on every front |
Duotone duotone
supports: background, image, typography, logo, platform, vignette, noiseA duotone poster: a full-bleed photo recolored to a two-color shadow/highlight gradient, with a bold eyebrow, big title, and subtitle anchored bottom-left.
Presets: electric (default), sunset, mono
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | New release |
title | text | yes | 46 | Your bold headline |
subtitle | multiline | — | 120 | A short supporting line for the poster. |
photo | image | — | — | Upload a photo to recolor as a duotone |
Glass glass
supports: background, gradient, typography, logo, platform, noiseA frosted translucent card floating over a colorful gradient or mesh backdrop.
Presets: frosted-dark (default), frosted-light, neon-glass
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 24 | Announcing |
title | text | yes | 70 | Your big headline |
subtitle | multiline | — | 130 | A short supporting line that explains the headline. |
Glitch glitch
supports: background, typography, logo, platform, noise, vignetteA cyberpunk datamosh card: a wide-tracked uppercase eyebrow over a centered title rendered with an RGB chroma-split glitch — neon slice bars and faint scanlines across the type band — with a subtitle below.
Presets: cyber (default), vapor, terminal
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | System // Online |
title | text | yes | 44 | Signal Lost |
subtitle | multiline | — | 120 | Reality is just a rendering error you haven't noticed yet. |
Gradient Mesh gradient-mesh
supports: background, gradient, typography, logo, platform, noise, vignetteSoft multi-color mesh backgrounds with bold, centered type.
Presets: aurora (default), sunset, ocean, mono
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 28 | Now in beta |
title | text | yes | 70 | Your big headline |
subtitle | multiline | — | 140 | A short supporting line |
Holographic holographic
supports: background, typography, logo, platform, noise, vignetteAn iridescent foil-sticker card: a holographic rainbow sheen and a diagonal specular highlight sweep behind a foil badge, eyebrow, gradient-clipped title, and a high-contrast subtitle.
Presets: iridescent (default), pearl, aurora
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 24 | Limited |
eyebrow | text | — | 30 | Collector Series |
title | text | yes | 44 | Holographic Edition |
subtitle | multiline | — | 120 | A premium foil finish that catches the light from every angle. |
Memphis memphis
supports: background, typography, logo, platformA late-80s Memphis Group card: playful geometric shapes (squiggles, triangles, dots, zigzags, half-circles and a checker block) scattered around the edges of a bright solid background, with a colorful badge pill, a heavy headline and a subtitle in a clean central column.
Presets: confetti (default), pop, sorbet
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 24 | Hello there |
title | text | yes | 52 | Make it playful |
subtitle | multiline | — | 120 | A bright, geometric look inspired by 80s design. |
Pattern Grid pattern-grid
supports: background, grid, typography, logo, platform, noiseStructured, centered type laid over a dot, blueprint, or isometric grid pattern.
Presets: dotted (default), blueprint, iso-grid
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
title | text | yes | 70 | Build on a solid grid |
subtitle | multiline | — | 140 | A short supporting line that sits neatly under the headline |
Photo Overlay photo-overlay
supports: background, gradient, image, typography, logo, platform, vignette, noiseA full-bleed background photo with a legibility scrim and a bold bottom-anchored headline, eyebrow, and subtitle.
Presets: bold (default), minimal, film
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
photo | image | — | — | Full-bleed background photo |
eyebrow | text | — | 28 | Travel |
title | multiline | yes | 80 | A weekend in the Dolomites |
subtitle | multiline | — | 120 | Where to stay, what to hike, and the best light. |
Pixel Art pixel-art
supports: background, grid, typography, logo, platformA chunky 8-bit retro pixel-art card: a stepped pixel border frame, a faint pixel-grid background and a few blocky CSS pixel icons (heart, star, coin) around a mono uppercase title with a hard offset drop-shadow, a blocky badge chip, a subtitle and a blinking-cursor "press start" tag.
Presets: arcade (default), game-boy, sunset-8bit
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 20 | LEVEL UP |
title | text | yes | 36 | New High Score |
subtitle | multiline | — | 100 | Insert coin to continue. Your run starts now. |
tag | text | — | 30 | PRESS START |
Personal Brand portfolio
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA personal-brand card: a big name, a role line, a short bio, a row of skill chips, and a handle/URL line, beside a large circular avatar (letter-mark fallback).
Presets: midnight (default), daylight, sunset
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
name | text | yes | 28 | Jordan Avery |
role | text | — | 36 | Product Designer & Developer |
bio | multiline | — | 96 | I craft calm interfaces and design systems for early-stage teams. |
skills | text | — | 50 | UI Design · Prototyping · Front-end |
handle | text | — | 40 | jordanavery.studio · @jordanmakes |
avatar | image | — | — | Square headshot (circular crop) |
Psychedelic psychedelic
supports: background, typography, logo, platform, noise, vignetteA 1960s/70s psychedelic poster card: a radiating rainbow sunburst backdrop with wavy decorative blobs framing a centered, outlined uppercase display title plus an eyebrow, subtitle, and footer line.
Presets: acid (default), cosmic, marigold
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Far Out Presents |
title | text | yes | 40 | Cosmic Groove |
subtitle | multiline | — | 110 | Tune in, turn up, and let the colors carry you all the way home. |
footer | text | — | 40 | Saturday Night · Doors at Eight |
Retro Wave retro-wave
supports: background, typography, logo, platform, noise, vignetteAn 80s synthwave card: a neon banded sun and a perspective grid floor under a big centered uppercase title with a glowing eyebrow pill and subtitle.
Presets: miami (default), outrun, neon-grid
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 28 | Now Streaming |
title | text | yes | 48 | Midnight Drive |
subtitle | multiline | — | 120 | Cruise the neon highway into the synthwave horizon. |
Risograph risograph
supports: background, typography, logo, platform, noiseA risograph print look: two overlapping spot-color shapes with slight misregistration, a halftone-dot texture, and grain, under a bold eyebrow, title, and subtitle on warm paper.
Presets: fluoro (default), forest, indigo
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Print run no. 04 |
title | text | yes | 46 | Ink on Paper |
subtitle | multiline | — | 120 | Two spot colors, slightly out of register, on warm uncoated stock. |
Spotlight spotlight
supports: background, gradient, grid, typography, noise, vignette, logo, platformA dark, dramatic single-message OG card: a small eyebrow, one big statement headline with a single keyword in an accent color, and a short subline, all lit by a large soft radial glow behind the text.
Presets: violet-glow (default), cyan-signal, amber-ember
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 32 | INTRODUCING |
title | multiline | yes | 70 | The fastest way to **ship** |
subtitle | multiline | — | 120 | One bold idea, rendered entirely in your browser. |
Sticker Bomb sticker-bomb
supports: background, typography, logo, platformA playful sticker-pack look: the title and subtitle sit on a big rounded white sticker with a soft drop-shadow, ringed by smaller rotated tag chips in bright colors.
Presets: bubblegum (default), mint, sunny
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
title | text | yes | 40 | Sticker Pack! |
subtitle | multiline | — | 100 | Peel, stick, and make it pop. |
tags | text | — | 80 | New | Fun | Bright | Bold |
Vaporwave vaporwave
supports: background, typography, logo, platform, noise, vignetteA dreamy pastel vaporwave card: a wide-spaced eyebrow over a centered title with an RGB chroma-split glow, a soft sun behind the type and a faint wireframe grid floor below.
Presets: pastel (default), sunset-mall, cyber
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | A E S T H E T I C |
title | text | yes | 44 | Dreaming in Pastels |
subtitle | multiline | — | 120 | Soft gradients, glitching type, and a sun that never sets. |
Watercolor watercolor
supports: background, typography, logo, platform, noise, vignetteA soft painterly watercolor card: blurred multiply-blended color washes bleeding from the edges of warm paper, around a centered uppercase eyebrow, big serif title, subtitle, and footer line.
Presets: bloom (default), meadow, dusk
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | From the studio |
title | text | yes | 48 | Soft Washes |
subtitle | multiline | — | 120 | Pigment bleeding into damp paper, where every edge stays a little undecided. |
footer | text | — | 40 | An exhibition of quiet color |
Product (44)
AI App ai-app
supports: background, gradient, image, typography, logo, platform, noise, vignetteA modern AI / LLM product hero: a sparkle product lockup with an AI badge, a value headline, subtitle and get-started CTA, beside a chat mockup showing a user prompt and an AI reply (or your own screenshot).
Presets: aurora (default), mint, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 24 | AI |
product | text | — | 30 | Nimbus AI |
title | text | yes | 46 | Your ideas, drafted in seconds |
subtitle | multiline | — | 120 | An AI writing copilot that turns rough notes into polished copy you can ship. |
prompt | text | — | 90 | Summarize these meeting notes into 3 action items. |
reply | multiline | — | 130 | Sure! Here are 3 action items: 1) Send the recap, 2) Book the review, 3) Draft the budget. |
cta | text | — | 24 | Start free |
screenshot | image | — | — | Drop a screenshot to replace the drawn chat |
Alternative To alternative-to
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA high-intent switch / SEO comparison card: an eyebrow badge above a big product name, a quieter struck-through generic category it replaces, a subtitle, up to three check-bullet differentiators, and a Make-the-switch CTA pill with a swap motif.
Presets: daylight (default), midnight, sky
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 40 | The open-source alternative to |
product | text | yes | 36 | Driftwork |
category | text | — | 44 | bloated all-in-one suites |
subtitle | multiline | — | 120 | Everything your team actually uses, none of the bloat — and it runs anywhere. |
points | multiline | — | 150 | No per-seat pricing Self-host in minutes Export your data anytime |
cta | text | — | 24 | Make the switch |
App Hero app-hero
supports: background, gradient, image, typography, logo, platform, noise, vignetteA soft, app-store-style hero: a large rounded app icon centered above the app name, a one-line tagline, a star rating, and a Get/Download pill button on a warm light background.
Presets: peach (default), cream, lilac
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
appIcon | image | — | — | Square app icon (a letter-mark is used if empty) |
appName | text | yes | 28 | Lumen |
tagline | text | — | 60 | Your calmest way to track money |
rating | text | — | 32 | 4.9 · 12K ratings |
cta | text | — | 16 | Get |
App Onboarding app-onboarding
supports: background, gradient, image, typography, logo, platform, noise, vignetteAn app onboarding-walkthrough card: an Onboarding badge, product lockup (your uploaded icon/logo, or a letter-mark fallback), value headline, subtitle and get-started CTA over a row of three phone screens, each holding a screenshot with a captioned step.
Presets: aurora (default), mint, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
badge | text | — | 24 | Onboarding |
product | text | — | 30 | Driftly |
title | text | yes | 44 | Set up in under a minute |
subtitle | multiline | — | 110 | Three quick steps from sign-up to your first win — no manuals, no clutter. |
steps | multiline | — | 90 | Create your space Invite your team You're all set |
cta | text | — | 24 | Get started |
screens | image-list | — | 3 items | Add up to 3 screenshots to fill the phones |
App Paywall app-paywall
supports: background, gradient, image, typography, logo, platform, noise, vignetteAn in-app subscription / go-premium paywall card: a marketing headline and free-trial CTA on the left, and a phone mockup whose screen is the paywall — a premium mark, benefits checklist, and a monthly/annual billing toggle with the featured plan highlighted.
Presets: midnight (default), aurora, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square app icon (a crown mark is used if empty) |
badge | text | — | 24 | Go Premium |
product | text | — | 30 | Lumina |
title | text | yes | 40 | Unlock everything |
subtitle | multiline | — | 100 | Every tool, no limits, no ads — one simple subscription that grows with you. |
benefits | multiline | — | 90 | Unlimited projects Ad-free experience Offline access Priority support |
monthly | text | — | 22 | $9/mo |
annual | text | — | 22 | $72/yr |
featuredPlan | text | — | 12 | annual |
cta | text | — | 24 | Start free trial |
screenshot | image | — | — | Drop a screenshot to replace the drawn paywall inside the phone |
App Privacy app-permissions
supports: background, gradient, image, typography, logo, platform, noise, vignetteA privacy-first app-permissions card: a Privacy badge, an app lockup, a reassuring headline and subtitle, and a permissions panel of up to four rows whose toggle/state look is derived from each row's on/off/ask state word.
Presets: daylight (default), midnight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square app icon (a letter-mark is used if empty) |
badge | text | — | 24 | Privacy |
product | text | — | 30 | Pocketgrove |
title | text | yes | 42 | Your data stays yours |
subtitle | multiline | — | 110 | No accounts, no trackers. Every permission is off until you turn it on. |
permissions | multiline | — | 170 | Camera | ask Location | off Contacts | off Analytics | on |
footnote | text | — | 60 | We never sell your data |
App Reviews app-reviews
supports: background, gradient, typography, logo, platform, noise, vignetteAn app-store social-proof card: a product lockup with a big aggregate star rating and ratings count above a bold headline, with up to three short user-review cards below.
Presets: daylight (default), midnight, sky
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square app icon (a letter-mark is used if empty) |
product | text | — | 30 | Tideline |
title | text | yes | 40 | Loved by thousands |
rating | text | — | 8 | 4.9 |
ratingCount | text | — | 30 | 12,400 ratings |
reviews | multiline | — | 220 | 5 | Best in its category by far. | Maya R. |
App Update app-update
supports: background, gradient, grid, typography, logo, platform, noise, vignetteAn app-store-style "What's New" card: a rounded app icon, product name, mono version chip and date, an update headline with subtitle, and a list of up to three change lines with accent markers.
Presets: fresh (default), indigo, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square app icon (a letter-mark is used if empty) |
badge | text | — | 24 | What’s New |
product | text | — | 30 | Marigold |
version | text | — | 16 | v3.2 |
date | text | — | 30 | Updated Jun 20 |
title | text | yes | 44 | Faster, smoother, smarter |
subtitle | text | — | 90 | A lighter rebuild with the fixes you asked for |
changes | multiline | — | 140 | Boards load 3x faster New offline mode Dark theme polish |
App Widget app-widget
supports: background, gradient, image, typography, logo, platform, noise, vignetteA home-screen widget showcase: a product lockup over a value headline, subtitle and CTA on the left, with a drawn widget cluster — one large 2x2 widget holding the app icon, a title, a big value and up to three rows, plus two small widgets — on a soft wallpaper panel on the right.
Presets: daylight (default), midnight, sunrise
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 24 | Home Screen Widgets |
product | text | — | 30 | Glanceboard |
title | text | yes | 42 | Your day, at a glance |
subtitle | multiline | — | 110 | Pin the numbers that matter to your home screen and stay in the loop without opening the app. |
widgetTitle | text | — | 24 | Today |
widgetValue | text | — | 18 | 8,420 steps |
widgetItems | multiline | — | 60 | Focus · 2h 10m Moves · 6 of 8 Sleep · 7h 30m |
cta | text | — | 24 | Add a widget |
icon | image | — | — | Square app icon (a letter-mark is used if empty) |
Book a Demo book-demo
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA confident B2B SaaS demo invite: a Live-demo badge, product lockup, value headline, a 'what you'll see' checklist, and a Book-a-demo CTA with duration chip beside a drawn calendar card and a host row (name + role, with your uploaded avatar or an initials disc).
Presets: indigo (default), midnight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 24 | Live demo |
product | text | — | 30 | Northwind |
title | text | yes | 44 | See it in action |
subtitle | multiline | — | 100 | A guided walkthrough tailored to your team's workflow. |
points | multiline | — | 210 | Live setup in minutes Automations that fit your stack Reporting your team will actually use |
duration | text | — | 22 | 30 min |
host | text | — | 30 | Maya Chen |
role | text | — | 32 | Solutions Engineer |
cta | text | — | 26 | Book a demo |
avatar | image | — | — | Host photo (an initials disc is used if empty) |
Browser Extension browser-extension
supports: background, gradient, image, typography, logo, platform, noise, vignetteA brand-neutral browser-extension promo: a drawn toolbar mockup with a pinned extension tile (your icon), beside a badge pill, headline, subtitle, star rating, users-count chip, and an add-to-browser CTA.
Presets: daylight (default), slate, sky
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square extension icon (a puzzle glyph is drawn if empty) |
badge | text | — | 24 | Browser Extension |
product | text | — | 30 | TabTidy |
title | text | yes | 44 | Clean tabs, focused browsing |
subtitle | multiline | — | 120 | Group, mute, and auto-close noisy tabs so your workspace stays calm. |
rating | text | — | 30 | 4.7 · 3,200 ratings |
users | text | — | 24 | 40,000+ users |
cta | text | — | 28 | Add to browser |
Bundle Kit bundle-kit
supports: background, gradient, image, typography, logo, platform, noise, vignetteA product-bundle card: a bundle badge, kit name, a row of two to four product thumbnails with labelled fallbacks, a large total price with a savings callout, and a short note line.
Presets: studio (default), bold, sale
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 16 | BUNDLE |
name | multiline | yes | 48 | The Home Office Starter Kit |
items | image-list | — | 4 items | Add up to 4 product images |
itemNames | multiline | — | 120 | Desk lamp Mug warmer Notebook |
total | text | — | 12 | $129 |
savings | text | — | 16 | Save $40 |
note | text | — | 36 | 3 items · ships free |
Case Study case-study
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA B2B case-study results card: an accent eyebrow, a bold outcome headline, a short summary, a row of up to three big result metrics (value over label), and a client lockup line.
Presets: corporate (default), fresh, dark
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Case Study |
title | text | yes | 56 | How we tripled qualified pipeline in two quarters |
summary | multiline | — | 140 | A focused rollout that turned scattered signups into a predictable revenue engine. |
metrics | multiline | — | 120 | +212% | revenue growth -38% | churn rate 4.9x | pipeline ROI |
client | text | — | 40 | Results for Northgate Labs |
Comparison Table comparison-table
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA feature-matrix comparison table whose hero is a grid of up to 4 product columns (the first, your product, highlighted in the accent) against up to 5 feature rows, where each cell renders a green check, a muted cross/dash, or verbatim text derived from its value.
Presets: daylight (default), midnight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 28 | Compare |
title | text | yes | 42 | How we compare |
subtitle | multiline | — | 90 | Everything you get out of the box — and what the others make you bolt on. |
cols | text | yes | 60 | Ours · Tool A · Others |
rows | multiline | yes | 320 | Realtime sync | yes | no | no Unlimited seats | yes | no | Add-on Offline mode | yes | no | yes SSO included | yes | $$ | no Audit logs | yes | no | no |
detail | text | — | 50 | All plans · No credit card |
Compliance compliance
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA B2B security & compliance trust card: an eyebrow, a confident headline and subtitle, a hero row of up to four drawn standard badge-shields, up to three assurance points, and an audit detail line.
Presets: midnight (default), daylight, slate
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Enterprise-ready |
title | text | yes | 42 | Security you can trust |
subtitle | multiline | — | 110 | Built for teams that move sensitive data — with controls reviewed by independent auditors. |
badges | multiline | — | 120 | SOC 2 Type II ISO 27001 GDPR HIPAA |
points | multiline | — | 130 | Encryption at rest & in transit SSO & SAML Role-based access control |
detail | text | — | 50 | Independently audited |
Desktop App desktop-app
supports: background, gradient, image, typography, logo, platform, noise, vignetteA native desktop-app hero: a product lockup (your uploaded app icon, or a letter-mark fallback), OS badge, value headline, subtitle, up to three feature lines and a download CTA on the left, beside a drawn desktop-window mockup with a title bar, sidebar rail and your screenshot inside.
Presets: midnight (default), aurora, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square app icon (a letter-mark is used if empty) |
badge | text | — | 24 | For Mac & Windows |
product | text | — | 30 | Driftboard |
title | text | yes | 44 | Your whole workspace, finally native |
subtitle | multiline | — | 120 | A fast, offline-first desktop app that keeps notes, tasks, and files in one quiet place. |
features | multiline | — | 120 | Instant local search Keyboard-first commands Works fully offline |
cta | text | — | 28 | Download for desktop |
screenshot | image | — | — | Drop a screenshot to show inside the window |
Device Frame device-frame
supports: background, gradient, image, typography, logo, platform, vignetteEmbed a screenshot inside a browser or phone frame with depth, a title, and a caption.
Presets: browser-dark (default), browser-light, phone, floating
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
title | text | yes | 60 | Introducing the new dashboard |
screenshot | image | — | — | Upload a screenshot |
caption | multiline | — | 80 | A short supporting line |
Feature Grid feature-grid
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA 3-up product-marketing card: an eyebrow, bold title and subtitle above a row of up to three feature cards (drawn icon, title, description) parsed from one slot, with an optional CTA pill.
Presets: daylight (default), midnight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Features |
title | text | yes | 44 | Everything you need to ship faster |
subtitle | multiline | — | 110 | One workspace for the whole team — no setup, no glue code, no surprises. |
features | multiline | — | 220 | Instant sync | Changes land everywhere in milliseconds. Guardrails | Roles and audit logs baked in by default. Plug-and-play | Drop-in SDKs for every stack you run. |
cta | text | — | 24 | Start building free |
Featured App featured-app
supports: background, gradient, image, typography, logo, platform, noise, vignetteAn editor's-pick app feature card: an accent feature ribbon, a large rounded app icon beside the product name and genre chips, a curator's blurb, and an optional star rating.
Presets: editorial (default), spotlight, ocean
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square app icon (a letter-mark is used if empty) |
badge | text | — | 28 | App of the Day |
product | text | — | 30 | Driftwell |
title | text | yes | 44 | The calm to-do app for busy minds |
blurb | multiline | — | 150 | A beautifully restrained planner that turns your overwhelming day into three things that actually matter. Our pick this week. |
tags | text | — | 60 | Productivity · Free · iOS |
rating | text | — | 30 | 4.9 · 8K ratings |
Integrations Grid integration-grid
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteAn integrations-marketplace card: a badge, headline, subtitle, accent count line, and CTA beside a 4-up grid of logo tiles parsed from an integration-name list, each tile an uploaded logo or a letter-mark fallback around a drawn hub.
Presets: daylight (default), midnight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 24 | Integrations |
title | text | yes | 44 | Connects with your stack |
subtitle | multiline | — | 110 | Plug in the tools you already use and keep everything in sync automatically. |
names | multiline | — | 160 | Flowdeck Pulsegrid Ledgerly Boardmark Streamcore Tasklane Vaultly Signal |
count | text | — | 28 | 100+ integrations |
cta | text | — | 24 | Browse all |
logos | image-list | — | 8 items | Add logo |
Launch Day launch-day
supports: background, gradient, image, typography, logo, platform, noise, vignetteA brand-neutral launch-day card: a LIVE NOW badge with a drawn live-dot, a product lockup (your uploaded icon/logo, or a letter-mark fallback), a big celebratory headline, a subtitle, a detail line, and a Try-it CTA pill, with a decorative rocket and confetti.
Presets: celebrate (default), midnight, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
badge | text | — | 24 | Live now |
product | text | — | 30 | Beacon |
title | text | yes | 46 | We're live! |
subtitle | multiline | — | 120 | The fastest way to ship your ideas — now open to everyone. |
detail | text | — | 50 | Now available everywhere |
cta | text | — | 24 | Try it free |
Marketplace Listing marketplace-listing
supports: background, gradient, image, typography, logo, platform, noise, vignetteA peer-to-peer marketplace listing card: an item photo, the title and a big price, a condition pill, a location and posted-time line, and a seller row with a round avatar, name, and star rating.
Presets: marketplace (default), classified, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
title | multiline | yes | 56 | Vintage Teak Lounge Chair |
price | text | — | 12 | $240 |
condition | text | — | 24 | Used · Like New |
location | text | — | 36 | Portland, OR · 2h ago |
seller | text | — | 24 | mid_century_finds |
rating | text | — | 16 | 4.9 (128) |
avatar | image | — | — | Seller avatar |
photo | image | — | — | Item photo |
Metrics metrics
supports: background, gradient, typography, logo, noise, vignette, platformA launch-analytics dashboard card whose hero is a row of 2-4 big-number KPI stat cards (value, label, trend delta) under a headline, on a deep-navy background with one vivid accent.
Presets: lime (default), ember, violet
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 32 | Launch recap |
headline | multiline | yes | 70 | Our launch day by the numbers |
subtitle | multiline | — | 110 | Real-time results from the first 24 hours on the platform. |
stats | multiline | yes | 240 | 12.4k | Upvotes | +18% #1 | Product of the Day | 3.2k | New signups | +42% 98% | Satisfaction | +5% |
footnote | text | — | 48 | Updated hourly · first 24h |
Mobile App mobile-app
supports: background, gradient, image, typography, logo, platform, noise, vignetteA brand-neutral mobile-app store hero: a product lockup and badge over a value headline, subtitle, up to three feature lines, a star rating and two generic download pills, with a phone mockup on the right. The lockup shows your uploaded icon/logo, or a letter-mark fallback.
Presets: aurora (default), mint, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
badge | text | — | 24 | New release |
product | text | — | 30 | Tideline |
title | text | yes | 46 | Plan your week in a single tap |
subtitle | multiline | — | 120 | A fast, focused planner that turns your scattered to-dos into one calm daily flow. |
features | multiline | — | 120 | Smart daily agenda Offline-first sync Gentle focus reminders |
rating | text | — | 30 | 4.8 · 6K ratings |
cta | text | — | 24 | Get the app |
screenshot | image | — | — | Drop a screenshot to show inside the phone |
NPS Score nps
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA satisfaction-score share card whose hero is a huge NPS number inside a semicircle gauge filled from the score (-100..100), over a 100%-wide promoters / passives / detractors bar split by computed percent.
Presets: daylight (default), midnight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Customer satisfaction |
title | text | yes | 40 | Customers love us |
subtitle | multiline | — | 90 | Our Net Promoter Score climbed nine points this quarter. |
score | text | yes | 8 | 72 |
promoters | text | — | 6 | 78 |
passives | text | — | 6 | 16 |
detractors | text | — | 6 | 6 |
sample | text | — | 36 | from 1,240 responses |
Onboarding onboarding-card
supports: background, gradient, typography, logo, platform, noise, vignetteA clean onboarding card: an eyebrow chip, a friendly headline, a subtitle, three numbered step chips, and a get-started CTA on a soft pastel background.
Presets: mint (default), lilac, peach
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 22 | Getting started |
title | multiline | yes | 48 | Set Up Your Workspace in Minutes |
subtitle | text | — | 64 | Three quick steps and you're ready to go. |
steps | multiline | — | 120 | Create your account Invite your team Connect your tools |
cta | text | — | 20 | Get started |
Persona persona
supports: background, gradient, image, typography, logo, platform, noise, vignetteA bright, energetic marketing hero fronted by a presenter: an accent pill, a big benefit headline with a short subline, and a presenter row of a circular avatar plus name and role.
Presets: violet-pink (default), sunset-rose, coral-mesh
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 18 | AI |
title | multiline | yes | 70 | Marketing that runs itself while you build |
subtitle | multiline | — | 120 | Turn your idea into a launch-ready campaign in minutes, not weeks. |
avatar | image | — | — | Square headshot (circular crop) |
name | text | — | 28 | Maya Chen |
role | text | — | 32 | Founder |
Pricing pricing
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA pricing-plan card: an optional badge, the plan name, a big price with billing period, an included-features checklist, and a CTA.
Presets: indigo (default), emerald, noir
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 22 | Most popular |
plan | text | yes | 24 | Pro |
price | text | yes | 12 | $29 |
period | text | — | 16 | per month |
features | multiline | — | 160 | Unlimited projects Priority support Custom domains Advanced analytics |
cta | text | — | 24 | Start free trial |
Pricing Table pricing-table
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA multi-tier SaaS pricing table: an eyebrow, title and subtitle above a row of up to three plan columns (name, big price + period, and a feature checklist whose per-feature check/dash is derived from each plan's y/n inclusion mask over the master feature list), with the named plan highlighted by an accent border, a Popular ribbon and a CTA pill.
Presets: indigo (default), midnight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Pricing |
title | text | yes | 40 | Simple, fair pricing |
subtitle | multiline | — | 80 | Start free, upgrade when your team grows. No hidden fees. |
plans | multiline | yes | 180 | Starter | $0 | /mo | ynnn Team | $24 | /mo | yyyn Scale | $79 | /mo | yyyy |
featured | text | — | 20 | Team |
features | multiline | — | 160 | Unlimited projects Priority support Usage analytics SSO & audit logs |
cta | text | — | 24 | Start free trial |
Product Card product-card
supports: background, gradient, image, typography, logo, platform, vignette, noiseAn e-commerce product card: brand eyebrow, product name, a prominent price, a note and an optional badge beside a clean product photo with a soft shadow.
Presets: studio (default), boutique, sale
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
brand | text | — | 24 | NORTHWIND |
name | multiline | yes | 60 | Aero Running Jacket |
price | text | — | 16 | $128 |
note | text | — | 32 | Free shipping over $75 |
badge | text | — | 16 | New |
photo | image | — | — | Product photo |
Product Deal product-deal
supports: background, gradient, image, typography, logo, platform, vignette, noiseA price-drop deal card: a deal badge, brand eyebrow, product name, a struck-through was-price beside a big accent now-price, a percent-off badge, an urgency line and an optional product photo with a soft shadow.
Presets: flash (default), holiday, clearance
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 16 | DEAL |
brand | text | — | 24 | NORTHWIND |
name | multiline | yes | 56 | Trailridge 30L Backpack |
wasPrice | text | — | 12 | $199 |
nowPrice | text | — | 12 | $129 |
discount | text | — | 12 | 35% OFF |
urgency | text | — | 32 | Ends Sunday · while stocks last |
photo | image | — | — | Product photo |
Product Launch product-launch
supports: background, gradient, image, typography, logo, platform, vignetteA launch announcement with a 'New' badge, bold title, subtitle, CTA chip, and an optional product image.
Presets: spotlight (default), split, centered-hero
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 18 | New |
title | text | yes | 70 | Meet your next favorite tool |
subtitle | multiline | — | 130 | A short line about what makes it great |
cta | text | — | 24 | Get started free |
productImage | image | — | — | — |
Product Review product-review
supports: background, gradient, image, typography, logo, platform, noise, vignetteA square-first physical-product card: a bestseller badge, product photo, name, a now/was price, a star rating with review count, a checkmark feature list, and a brand logo in the bottom-left.
Presets: bestseller (default), midnight, warm
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 18 | BESTSELLER |
title | multiline | yes | 48 | Premium Wireless Headphones |
nowPrice | text | — | 12 | $199 |
wasPrice | text | — | 12 | $269 |
rating | text | — | 24 | 4.8/5 (256 reviews) |
features | multiline | — | 140 | Active Noise Cancellation 30-hour Battery Life Premium Sound Quality |
photo | image | — | — | Product photo |
logo | image | — | — | Brand logo |
brand | text | — | 20 | NORTHWIND |
Push Notification push-notification
supports: background, gradient, image, typography, logo, platform, noise, vignetteA realistic lock-screen push-notification banner floating on a soft wallpaper — app icon, app name and time header, a bold notification title and 1-2 line body, with a marketing eyebrow and caption around it.
Presets: midnight (default), sunrise, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square app icon (a letter-mark is used if empty) |
eyebrow | text | — | 30 | Re-engage your users |
appName | text | — | 24 | Tideline |
notifTitle | text | yes | 50 | Your weekly plan is ready |
notifBody | multiline | — | 130 | Tap to see the 3 tasks we lined up for you — it takes about two minutes. |
time | text | — | 12 | now |
caption | text | — | 70 | Bring people back with a tap-worthy push. |
PWA Install pwa-install
supports: background, gradient, image, typography, logo, platform, noise, vignetteA web-app install card: an 'Install the app' badge, a product lockup, a value headline, a subtitle and up to three feature lines on the left, with a drawn browser install prompt (app icon, name, url and Install button) on the right.
Presets: indigo (default), midnight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 28 | Install the app |
product | text | — | 30 | Notebrook |
title | text | yes | 44 | Add to your home screen |
subtitle | multiline | — | 120 | Pin the web app to your home screen and open it like any other — no download, no app store. |
features | multiline | — | 90 | Works offline No app store Instant updates |
url | text | — | 34 | notebrook.app |
cta | text | — | 28 | Install |
icon | image | — | — | Square app icon (a letter-mark is used if empty) |
Referral referral
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA two-sided referral reward card with a 'refer a friend' badge, a give/get reward headline, two reward discs, a ticket-style code chip, an optional how-it-works steps list, and a share-your-link CTA.
Presets: mint (default), sunset, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 24 | Refer a friend |
product | text | — | 30 | Lumen |
title | text | yes | 44 | Give $20, get $20 |
subtitle | multiline | — | 110 | Invite a friend to Lumen. When they subscribe, you both get a credit on your next bill. |
give | text | — | 16 | $20 |
get | text | — | 16 | $20 |
code | text | — | 22 | FRIEND20 |
steps | multiline | — | 130 | Share your link with a friend They sign up and subscribe You both get the reward |
cta | text | — | 26 | Share your link |
Roadmap roadmap
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA product roadmap card with an eyebrow, bold title, and subtitle over three Now / Next / Later columns — each a card with a colored status dot and a bulleted list parsed from its slot, with the Now column accented.
Presets: midnight (default), daylight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Product Roadmap |
title | text | yes | 44 | What we're building next |
subtitle | text | — | 80 | A look at where the product is headed this quarter. |
now | multiline | — | 110 | Realtime collaboration Faster exports Dark mode polish |
next | multiline | — | 110 | Mobile app beta Team workspaces Version history |
later | multiline | — | 110 | Public API Offline mode Plugin marketplace |
ROI Result roi-calculator
supports: background, gradient, grid, typography, logo, platform, noise, vignetteAn ROI / savings-result share card whose hero is a giant accent figure with a caption, an optional positive delta chip, and a list of input assumptions framing the math.
Presets: daylight (default), midnight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 28 | ROI Calculator |
title | text | yes | 40 | Teams save big |
subtitle | text | — | 90 | See what switching could return for a team your size. |
result | text | yes | 16 | $48,000 |
resultLabel | text | — | 40 | saved per year |
inputs | multiline | — | 140 | Team size | 25 Hours saved/wk | 6 Hourly rate | $50 |
delta | text | — | 16 | +312% ROI |
cta | text | — | 24 | Calculate yours |
SaaS saas
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA SaaS marketing card: app lockup (mark + product name), a big value-prop headline, a subtitle, a row of feature pills, and a social-proof line. The mark is your uploaded icon/logo, or a letter-mark fallback.
Presets: indigo (default), mint, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
product | text | — | 28 | Tasklane |
title | multiline | yes | 80 | Plan, Track, and Ship Faster |
subtitle | multiline | — | 130 | One fast workspace for your whole product team. |
features | multiline | — | 120 | Realtime sync Keyboard-first Git integration |
proof | text | — | 48 | Trusted by 2,000+ teams |
SaaS Dark saas-dark
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA sleek dark SaaS hero: a product lockup with an app icon (your uploaded icon/logo, or a letter-mark fallback) and a New badge, a bold value headline, a subtitle, a feature dot-list, and a Start CTA, beside a drawn dashboard widget (a mini area chart + two KPI tiles).
Presets: aurora (default), ember, mono
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
badge | text | — | 12 | New |
product | text | — | 20 | Lumenstack |
title | multiline | yes | 52 | Analytics Your Whole Team Trusts |
subtitle | text | — | 70 | Realtime dashboards with zero setup. |
features | multiline | — | 120 | Live metrics Team workspaces Audit-ready logs |
screenshot | image | — | — | Upload a screenshot |
kpiValue1 | text | — | 8 | 48.2k |
kpiLabel1 | text | — | 18 | Active users |
kpiValue2 | text | — | 8 | +24% |
kpiLabel2 | text | — | 18 | Week over week |
cta | text | — | 20 | Start free |
Sale sale
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA bold sale/discount promo card: a limited-time badge, a huge discount headline, a subline, an optional dashed coupon-code chip, and a shop CTA.
Presets: hot (default), electric, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 22 | Limited time |
headline | text | yes | 24 | 50% OFF |
subtitle | multiline | — | 110 | Everything in the summer collection — this weekend only. |
code | text | — | 18 | SUMMER50 |
cta | text | — | 22 | Shop the sale |
Social Proof social-proof
supports: background, gradient, image, typography, logo, platform, noise, vignetteA clean light-mode SaaS marketing card with a status badge, logo, big dark headline, rating stars, and a green-check feature checklist that signals trust and social proof.
Presets: daylight (default), linen, powder
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 22 | Trusted by teams |
logo | image | — | — | Logo |
headline | multiline | yes | 72 | The toolkit teams switch to and stay on |
subtext | multiline | — | 130 | One workspace for docs, tasks, and reviews. Set up in minutes, loved for years. |
rating | text | — | 5 | 5.0 |
ratingNote | text | — | 34 | from 1,200+ reviews |
features | multiline | — | 120 | Realtime collaboration Unlimited projects Works offline |
accent | text | — | 20 | Free 14-day trial |
Trial Ending trial-ending
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA friendly trial-ending upgrade nudge: a huge days-left figure (derived from the value), a product lockup (your uploaded icon/logo, or a letter-mark fallback), a reminder title and subtitle, a short perks list of what upgrading keeps, an Upgrade pill, and an offer detail line.
Presets: sunrise (default), midnight, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
badge | text | — | 24 | Trial ending |
product | text | — | 30 | Loomflow |
daysLeft | text | yes | 6 | 3 |
title | text | yes | 42 | Your trial ends soon |
subtitle | multiline | — | 110 | Keep your projects, history, and team in sync — upgrade before access pauses. |
perks | multiline | — | 90 | Unlimited projects Full version history Priority support |
cta | text | — | 26 | Upgrade now |
detail | text | — | 50 | 50% off your first month |
Waitlist waitlist
supports: background, gradient, image, typography, logo, platform, noise, vignetteA coming-soon early-access card: a status pill and product lockup (your uploaded icon/logo, or a letter-mark fallback) over a big value headline and subtitle, with a drawn email-capture row and a CTA, plus a cluster of overlapping avatars and a social-proof count.
Presets: midnight (default), sunrise, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
badge | text | — | 24 | Coming soon |
product | text | — | 30 | Driftwave |
title | text | yes | 46 | Be first in line for early access |
subtitle | multiline | — | 120 | Private beta opening soon. Reserve your spot and we'll email you an invite. |
email | text | — | 40 | you@email.com |
cta | text | — | 24 | Join the waitlist |
avatars | image-list | — | 4 items | Add face |
count | text | — | 30 | 2,480 on the list |
Events (6)
Award award
supports: background, gradient, image, typography, logo, platform, vignette, noiseAn elegant, centered honoree-announcement card: a gold laurel wreath frames a circular photo (or a drawn medal/monogram), above an uppercase eyebrow, a serif award title, the honoree's name, a year chip, and a short note line.
Presets: gold (default), platinum, emerald
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 26 | Winner |
award | text | yes | 44 | Designer of the Year |
name | text | — | 40 | Ada Brightwater |
year | text | — | 8 | 2026 |
note | text | — | 50 | For outstanding craft and leadership |
photo | image | — | — | — |
Conference conference
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA modern tech-conference hero with an uppercase accent eyebrow, a big bold event name, a date and location row with drawn calendar and pin icons, a tagline, and an optional pill CTA.
Presets: keynote (default), daylight, neon
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | 2026 Summit |
title | text | yes | 46 | Frontier Dev Summit |
date | text | — | 40 | May 14-16, 2026 |
location | text | — | 40 | The Atrium, Portland |
tagline | multiline | — | 120 | Three days of talks, workshops, and the people building what's next. |
cta | text | — | 28 | Register |
Festival Lineup festival-lineup
supports: background, gradient, typography, logo, platform, noise, vignetteA bold condensed music-festival poster: the festival name huge at the top, a tiered bill of large headliners over a denser block of dot-separated support acts, with a dates line and venue at the bottom.
Presets: headliner (default), neon-night, desert
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
title | text | yes | 40 | Solstice Sound |
headliners | multiline | — | 120 | Velvet Mirage Neon Cathedral The Paper Tigers |
support | multiline | — | 200 | Midnight Caravan · Glass Harbour · Lantern Parade · Saltwater Choir Dune Sparrow · The Quiet Hours · Copper Lions · Vesper Bloom |
dates | text | — | 40 | Aug 15–17, 2026 |
venue | text | — | 40 | Harbor Greens · Port Marlow |
Meetup meetup
supports: background, gradient, typography, logo, platform, noise, vignetteA friendly local meetup card with a bold day/month date chip beside the organizer name, event title, venue with a pin, and a detail line with a clock.
Presets: community (default), tech, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
group | text | — | 40 | Riverside Makers Collective |
title | text | yes | 48 | Hands-On Soldering Night |
day | text | — | 6 | 12 |
month | text | — | 8 | JUL |
venue | text | — | 50 | The Old Mill Workshop, Studio 3 |
detail | text | — | 50 | 6:30 PM · Free |
Save the Date save-the-date
supports: background, gradient, typography, logo, platform, vignette, noiseAn elegant centered save-the-date for weddings, galas, and celebrations: a small uppercase eyebrow flanked by drawn laurel sprigs, the names in a large serif, a styled date between thin rule dividers, then a location line and a small note.
Presets: blush (default), midnight, sage
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Save the Date |
names | text | yes | 44 | Ava & Liam |
date | text | — | 40 | 09 · 14 · 2026 |
location | text | — | 50 | The Hillcrest Gardens · Meadowbrook |
note | text | — | 50 | Formal invitation to follow |
Speaker Card speaker-card
supports: background, gradient, typography, logo, platform, noise, vignetteAn event speaker spotlight: a large rounded headshot with an accent ring beside a "Featured Speaker" pill, the speaker's name and role, a highlighted talk title, and an event + date meta row.
Presets: stage (default), daylight, bold
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Featured Speaker |
name | text | yes | 30 | Priya Anand |
role | text | — | 50 | Head of Design · Northwind |
talk | text | — | 64 | Designing systems that scale with your team |
event | text | — | 40 | DevSummit ’26 |
when | text | — | 30 | Jul 18 · 2:00 PM |
photo | image | — | — | — |
Education (7)
Certificate certificate
supports: background, gradient, typography, logo, platform, vignette, noiseA formal certificate of completion: an ornamental double-line border with corner flourishes around a centered stack — issuer, an elegant serif title, the recipient name with an underline, a course/date detail line, and a signature row beside a drawn gold seal.
Presets: classic (default), modern, noir
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
org | text | — | 40 | Northwind Learning Institute |
title | text | yes | 36 | Certificate of Completion |
recipient | text | yes | 40 | Avery Calloway |
detail | multiline | — | 120 | Foundations of Data Analysis · March 2026 |
signer | text | — | 40 | Jane Rivera · Director |
Cohort Course cohort
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA cohort-based course card: a kicker pill, a big course title, an instructor line, two structured info cards (start date + duration), a 'seats left' urgency pill with a progress bar, and an apply CTA.
Presets: cobalt (default), pine, noir
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
kicker | text | — | 26 | Cohort-based course |
title | multiline | yes | 64 | Product Design Intensive |
instructor | text | — | 40 | Led by Dana Brooks |
startLabel | text | — | 24 | Sep 8, 2026 |
duration | text | — | 30 | 6 weeks · Live |
seats | text | — | 30 | 12 of 40 seats left |
cta | text | — | 22 | Apply now |
Course course
supports: background, gradient, grid, typography, logo, platform, noise, vignetteAn online-course / lesson share card: an eyebrow, a big course title, an instructor line, a meta row of pills (lessons, duration, level), and an enroll CTA.
Presets: indigo (default), forest, plum
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
kicker | text | — | 28 | Online course |
title | multiline | yes | 70 | Build a Design System in Figma |
instructor | text | — | 40 | with Dana Lee |
meta | text | — | 60 | 12 lessons · 4h 30m · Beginner |
cta | text | — | 24 | Enroll free |
Curriculum curriculum
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA course curriculum / syllabus card: a left header (kicker, course title, a meta line, and a CTA) beside a right column of numbered modules each with a duration chip.
Presets: paper (default), indigo, carbon
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
kicker | text | — | 26 | Course syllabus |
title | multiline | yes | 50 | Frontend Architecture |
meta | text | — | 48 | 8 modules · 6h 20m · Beginner |
modules | multiline | — | 220 | Foundations | 42m Component patterns | 1h 05m State & data flow | 58m |
cta | text | — | 22 | View curriculum |
Video Lesson lesson
supports: background, gradient, image, typography, logo, platform, noise, vignetteA single video-lesson card: a series eyebrow, a big lesson title, a course meta line, beside a video thumbnail panel with a centered play button and a duration badge.
Presets: midnight (default), plum, slate
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
series | text | — | 40 | Design Systems · Lesson 4 |
title | multiline | yes | 56 | Tokens, Themes, and Dark Mode |
meta | text | — | 40 | 12 lessons · 4h 30m |
duration | text | — | 10 | 14:32 |
thumb | image | — | — | Video thumbnail |
Webinar webinar
supports: background, gradient, image, typography, logo, platform, noise, vignetteA live webinar / masterclass card: a LIVE badge with a pulsing dot, a big topic title, a presenter row (avatar with letter fallback, name + role), a date/time chip, and a register CTA.
Presets: daylight (default), indigo, charcoal
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 18 | Live webinar |
title | multiline | yes | 70 | Scaling Design Systems Without the Chaos |
presenter | text | — | 36 | Maya Chen |
role | text | — | 40 | Head of Design, Northwind |
datetime | text | — | 40 | Thu, Jul 10 · 11:00 AM PT |
cta | text | — | 22 | Save my seat |
avatar | image | — | — | Square headshot |
Workshop workshop
supports: background, gradient, typography, logo, platform, noise, vignetteA hands-on workshop or masterclass announcement with a live eyebrow pill, big title, a when row and format chip with drawn calendar and clock icons, a 'what you'll learn' checklist, an instructor line, and a price chip plus CTA beside an optional instructor headshot.
Presets: scholar (default), fresh, sunrise
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Live Workshop |
title | text | yes | 44 | Designing with Real Data |
when | text | — | 44 | Sat, Jul 12 · 10 AM |
format | text | — | 30 | Online · 2 hrs |
learn | multiline | — | 120 | Map messy data to clear layouts Build reusable design tokens Ship a polished prototype |
instructor | text | — | 40 | with Dr. Lia Crane |
price | text | — | 20 | Free |
cta | text | — | 24 | Save my seat |
photo | image | — | — | Upload a headshot |
Finance (7)
Token Price crypto-token
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA token price card: a token lockup (your uploaded logo or a letter-mark coin, plus name + ticker chip), a big price, a 24h change pill (green up / red down) with arrow, a sparkline that trends up or down with the change, and a stat row of pills (market cap, volume, rank).
Presets: neon (default), violet, gold
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
logo | image | — | — | Upload logo |
name | text | yes | 24 | Zelphor |
ticker | text | — | 8 | ZPH |
price | text | yes | 12 | $2.418 |
change | text | — | 14 | +12.4% |
stats | text | — | 60 | Mkt Cap $1.2B · Vol $84M · Rank #42 |
note | text | — | 20 | 24h · USD |
Fintech App fintech-app
supports: background, gradient, image, typography, logo, platform, noise, vignetteA fintech app hero: a product lockup (your uploaded icon/logo, or a letter-mark fallback), a value headline + subtitle, a short feature list, and a Get-the-app CTA, beside a drawn gradient payment card (label, masked number, holder, chip).
Presets: emerald (default), indigo, sunset
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
product | text | — | 20 | Plume |
title | multiline | yes | 42 | Banking That Grows With You |
subtitle | text | — | 56 | No fees, no minimums — just smarter money. |
features | multiline | — | 120 | Instant transfers Get paid 2 days early 2.5% cashback |
cardLabel | text | — | 20 | Plume Card |
holder | text | — | 24 | A. MORGAN |
cta | text | — | 22 | Get the app |
Funding Round funding-round
supports: background, gradient, grid, typography, logo, platform, noise, vignette, imageA funding-round announcement card: a round badge, a "we raised" eyebrow, a huge amount, a company lockup, an investors line, a use-of-funds tagline, and an optional CTA.
Presets: spotlight (default), indigo, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 14 | Series A |
eyebrow | text | — | 18 | We raised |
amount | text | yes | 10 | $12M |
company | text | — | 22 | Lumenstack |
logo | image | — | — | — |
investors | text | — | 64 | Led by Vantage Capital, with Meadow Ventures |
tagline | multiline | yes | 64 | Building the fastest analytics stack for modern teams. |
cta | text | — | 20 | We are hiring |
Invoice invoice
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteAn invoice card styled as a document: a business lockup with logo (your uploaded icon/logo, or a letter-mark fallback) and INVOICE title, an invoice number with issued and due dates, a bill-to line, a table of line items with amounts, a totals block, and a PAID stamp.
Presets: paper (default), slate, noir
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
business | text | yes | 24 | Brightloom Studio |
invoiceNo | text | — | 16 | INV-0142 |
issued | text | — | 22 | Issued Jun 3 |
due | text | — | 22 | Due Jun 17 |
billTo | text | — | 30 | Bill to: Northwind Co. |
items | multiline | — | 160 | Brand identity system | $1,400 Landing page design | $820 Two revision rounds | $260 Asset handoff | $0 |
total | text | — | 14 | $2,480.00 |
status | text | — | 12 | PAID |
Market Update market-update
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA market update card: an eyebrow, a headline, a date, then a clean movers list (invented company name + price + green/red % change), and a muted footnote.
Presets: newsprint (default), terminal, slate
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 20 | Market update |
title | multiline | yes | 56 | Markets Close Higher on Tech Rally |
date | text | — | 30 | Jun 19 · 4:00 PM ET |
movers | multiline | — | 240 | Helio Labs | $182.40 | +3.2% Vantage Group | $54.10 | -1.1% Meadow Energy | $77.85 | +0.8% Orbit Mobility | $12.66 | +5.4% |
footer | text | — | 44 | Closing prices · illustrative sample data |
Savings Goal savings-goal
supports: background, gradient, typography, logo, platform, noise, vignetteA personal savings-goal card with a circular progress ring filled to the percent saved, the goal name, the amount saved against the target, an encouraging note, and an optional CTA pill.
Presets: mint (default), sky, sunset
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Savings Goal |
title | text | yes | 36 | Emergency Fund |
saved | text | — | 14 | $8,400 |
goal | text | — | 14 | $10,000 |
percent | text | — | 4 | 84 |
note | text | — | 54 | On track for December |
cta | text | — | 24 | Keep saving |
Stock Ticker stock-ticker
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA single-equity stock / earnings ticker card: a company logo (or a symbol monogram), a mono ticker chip and company name, a huge price, and a green-up / red-down trend (arrow + sparkline + colored delta pill) derived from the change.
Presets: terminal (default), daylight, amber
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
logo | image | — | — | Upload logo |
symbol | text | — | 10 | NVTX |
company | text | yes | 36 | Novatix Semiconductor |
price | text | yes | 14 | $184.20 |
change | text | — | 14 | +4.8% |
changeAbs | text | — | 14 | +$8.40 |
note | text | — | 44 | After hours · Jun 21 |
Real Estate (6)
Agent Profile agent-profile
supports: background, gradient, typography, logo, platform, noise, vignetteA real-estate agent profile card: a big rounded headshot beside the agent's name, role and license, brokerage, a row of up to three stats, a tagline, a contact line and a booking CTA.
Presets: trust (default), warm, modern
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
name | text | yes | 30 | Camille Hartwell |
title | text | — | 40 | Broker · Lic #00482 |
brokerage | text | — | 40 | Meridian Property Group |
stats | multiline | — | 120 | $48M | Sold ’25 120+ | Homes closed 4.9★ | Client rating |
tagline | text | — | 70 | Helping families find home across the valley since 2012. |
contact | text | — | 44 | (555) 010-2840 |
cta | text | — | 24 | Book a tour |
photo | image | — | — | — |
Just Sold just-sold
supports: background, gradient, image, typography, logo, platform, vignette, noiseA real-estate JUST SOLD / Just Listed announcement: a property photo hero with a bold diagonal status banner in the accent, the address, a big accent price, a beds·baths·sqft specs line, and an agent credit.
Presets: sold (default), luxe, fresh
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
status | text | — | 16 | JUST SOLD |
address | text | yes | 50 | 248 Maple Crest Ave, Lakewood |
price | text | — | 16 | $845,000 |
specs | text | — | 50 | 4 bd · 3 ba · 2,400 sqft |
agent | text | — | 40 | Jordan Lee · Realtor |
photo | image | — | — | Add a property photo |
Neighborhood Guide neighborhood-guide
supports: background, gradient, image, typography, logo, platform, vignette, noiseA lifestyle real-estate area guide: a side photo panel beside a "Living in" eyebrow, a big elegant serif area name, a short summary, a row of up to three area stats (value | label), and a detail line.
Presets: editorial (default), coastal, park
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Living in |
name | text | yes | 40 | Harborline Heights |
summary | multiline | — | 130 | Tree-lined streets, a walkable main strip, and weekend markets a short stroll from the water. |
stats | multiline | — | 120 | 92 | Walk Score $540k | Median home 18 min | To downtown |
detail | text | — | 50 | Guided by neighborhood specialists |
photo | image | — | — | — |
Open House open-house
supports: background, gradient, image, typography, logo, platform, noise, vignetteAn open-house flyer: a bold OPEN HOUSE badge, the home title, a property photo, a prominent date/time and address, and a host line with an optional detail.
Presets: warm (default), navy, sage
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 16 | Open House |
title | multiline | yes | 42 | Modern Hillside Retreat |
datetime | text | — | 34 | Sat, Jul 12 · 1–4 PM |
address | text | — | 48 | 17 Canyon View Dr, Boulder |
host | text | — | 40 | Hosted by Erin Park |
detail | text | — | 40 | Refreshments served · All welcome |
photo | image | — | — | Property photo |
Property Listing property-listing
supports: background, gradient, image, typography, logo, platform, noise, vignetteA real-estate listing card: a property photo, a status pill, a big price, the home title, an address line, a specs row (beds · baths · sqft with icons), and an agent line.
Presets: classic (default), modern, coastal
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
status | text | — | 16 | For Sale |
price | text | — | 14 | $845,000 |
title | multiline | yes | 40 | Sunlit 3-Bed Craftsman |
address | text | — | 48 | 248 Maple Crest Ave, Lakewood |
specs | text | — | 40 | 3 Beds · 2 Baths · 1,840 sqft |
agent | text | — | 48 | Listed by Erin Park · Crestline Realty |
photo | image | — | — | Property photo |
Rental Listing rental-listing
supports: background, gradient, image, typography, logo, platform, noise, vignetteA for-rent listing card with a property photo hero, a status pill, a big monthly price, the title, an address with a pin, a beds/baths/sqft specs row, and an availability detail line.
Presets: modern (default), warm, urban
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
status | text | — | 20 | For Rent |
price | text | — | 16 | $2,400/mo |
title | text | yes | 40 | Bright 2-Bed Loft |
address | text | — | 50 | 118 Willow Bend St, Riverside |
specs | text | — | 40 | 2 Beds · 1 Bath · 980 sqft |
detail | text | — | 50 | Available Aug 1 · Pets OK |
photo | image | — | — | Upload a property photo |
Jobs (5)
Open Roles hiring-roles
supports: background, gradient, typography, logo, platform, noise, vignetteA we're-hiring card listing multiple open positions: a company logo, an eyebrow pill and a content-derived "N open roles" count chip, a big headline, and up to five "Role | location/type" rows above a note and a call-to-action pill.
Presets: indigo (default), clean, sunset
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | We’re Hiring |
title | text | yes | 44 | Join the team |
roles | multiline | — | 170 | Senior Product Designer | Remote Backend Engineer | Berlin · Full-time Growth Marketer | Hybrid |
note | text | — | 50 | Remote-friendly · Full-time |
cta | text | — | 24 | View openings |
logo | image | — | — | — |
Job Posting job-posting
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA job posting card: a company lockup (your uploaded icon/logo, or a letter-mark fallback), a big role title, a meta row of pills (location, type, salary), a short list of highlights, and an Apply CTA.
Presets: daylight (default), indigo, slate
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
logo | image | — | — | Square icon/logo (a letter-mark is used if empty) |
company | text | — | 24 | Northwind Labs |
role | multiline | yes | 44 | Senior Frontend Engineer |
meta | text | — | 48 | Remote · Full-time · $140k–$180k |
points | multiline | — | 120 | React + TypeScript 4+ years experience Equity + full benefits |
cta | text | — | 20 | Apply now |
New Role new-role
supports: background, gradient, image, typography, logo, platform, noise, vignetteA celebratory new-job announcement card: an eyebrow over the person's name beside a round avatar, a big new-role title with the company in the accent color (with an old → new arrow when the role contains "->"), and a start-date or location detail line.
Presets: celebrate (default), daylight, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 36 | Excited to announce |
name | text | — | 30 | Ada Brightwater |
role | text | yes | 44 | Senior Product Designer |
company | text | — | 36 | Brightline Studio |
detail | text | — | 60 | Starting August · Remote |
avatar | image | — | — | — |
Open to Work open-to-work
supports: background, gradient, image, typography, logo, platform, noise, vignetteA candidate availability card: a circular headshot ringed in green with an "Open to Work" badge along its lower edge, beside the person's name, professional role, a row of skill chips, and a detail line with a live availability dot.
Presets: daylight (default), indigo, slate
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 24 | OPEN TO WORK |
name | text | yes | 30 | Jordan Avery |
role | text | — | 40 | Senior Frontend Engineer |
skills | text | — | 120 | React · TypeScript · Design Systems · Accessibility |
detail | text | — | 50 | Remote · Full-time · Available now |
avatar | image | — | — | — |
We're Hiring were-hiring
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA bold 'we're hiring' announcement: a hiring badge, a big statement, a list of open roles as pills, a perks line, and a see-roles CTA.
Presets: electric (default), sunset, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 18 | We're hiring |
title | multiline | yes | 40 | Come Build With Us |
roles | multiline | — | 120 | Product Designer Backend Engineer Growth Lead Support Specialist |
perks | text | — | 56 | Remote-first · Equity · Unlimited PTO |
company | text | — | 24 | Brightloom |
cta | text | — | 22 | See open roles |
Food (5)
Daily Special daily-special
supports: background, gradient, image, typography, logo, platform, vignette, noiseA restaurant daily-special card: an uppercase eyebrow, an elegant serif dish name, a short appetizing description, a prominent accent price, and a detail line, beside a full-height photo of the dish (or a drawn plate placeholder).
Presets: bistro (default), chalk, fresh
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 28 | Today's Special |
dish | text | yes | 44 | Charred Heirloom Tomato Tart |
desc | multiline | — | 130 | Blistered tomatoes over whipped ricotta on flaky pastry, with basil oil and toasted pine nuts. |
price | text | — | 14 | $18 |
detail | text | — | 40 | Available till 9pm |
photo | image | — | — | Add a photo of the dish |
Happy Hour happy-hour
supports: background, gradient, typography, logo, platform, noise, vignetteA bar or restaurant happy-hour specials board: the venue name, a big condensed headline, a times line with a drawn clock, a dotted-leader specials list, and a small note.
Presets: golden (default), neon-bar, bistro
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
venue | text | — | 36 | The Copper Lantern |
title | text | yes | 36 | Happy Hour |
times | text | — | 44 | Mon–Fri · 4–6 PM |
specials | multiline | — | 150 | House Margarita | $7 Draft Pints | $5 Truffle Fries | $6 |
note | text | — | 50 | Dine-in only · 21+ |
Restaurant Menu menu
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA restaurant menu card: a section eyebrow, the restaurant name, a list of dishes each with a name and price (dotted leader between), and a muted note.
Presets: charcoal (default), linen, garden
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
kicker | text | — | 22 | Dinner Menu |
name | text | yes | 28 | Olive & Thyme |
items | multiline | — | 220 | Charred Octopus | 18 Wild Mushroom Risotto | 24 Seared Branzino | 29 |
note | text | — | 40 | Seasonal · Locally sourced |
Recipe recipe
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA recipe share card: an eyebrow, the dish name, a meta row (time, servings, difficulty), a short ingredient list in two columns, and an optional source line.
Presets: saffron (default), basil, charcoal
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
kicker | text | — | 24 | Recipe |
title | multiline | yes | 60 | One-Pan Lemon Garlic Pasta |
meta | text | — | 50 | 25 min · Serves 4 · Easy |
ingredients | multiline | — | 160 | Spaghetti Garlic Lemon Parmesan Olive oil Parsley |
source | text | — | 40 | from The Weeknight Kitchen |
Restaurant Hero restaurant-hero
supports: background, gradient, image, typography, logo, platform, noise, vignetteA restaurant brand hero: the restaurant name, a cuisine tagline, a star rating with review count, a details line (hours/location), and a reserve CTA, beside a food photo.
Presets: terracotta (default), charcoal, fresh
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
name | multiline | yes | 22 | Olive & Thyme |
cuisine | text | — | 44 | Mediterranean Kitchen & Bar |
rating | text | — | 28 | 4.8 · 1,200+ reviews |
detail | text | — | 40 | Open 5–11 PM · Downtown |
cta | text | — | 20 | Reserve a table |
photo | image | — | — | Food photo |
Travel (6)
City Guide city-guide
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA list-forward city travel guide: a small accent eyebrow over a big city name and subtitle, then a numbered list of top spots (place + tag per line) on a subtle drawn street-map backdrop.
Presets: wander (default), metro, daytrip
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | City Guide |
city | text | yes | 30 | Porthaven |
subtitle | text | — | 50 | 48 hours in the old town |
spots | multiline | — | 150 | Harbor Steps | sunset views The Tin Market | street food |
footer | text | — | 40 | Best in spring |
Destination Postcard destination-postcard
supports: background, gradient, image, typography, logo, platform, noise, vignetteA vintage travel-postcard card: a full-bleed destination photo inside a thick postcard border, with a "Greetings from" eyebrow, a big serif place name, a region subline, a coordinates line, and a stamp graphic in the corner.
Presets: coastal (default), sunset, alpine
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 18 | Greetings from |
title | text | yes | 22 | Marisol Bay |
subtitle | text | — | 36 | The Southern Coast |
coordinates | text | — | 26 | 41.2 N / 9.1 E |
photo | image | — | — | — |
Flight Deal flight-deal
supports: background, gradient, image, typography, logo, platform, noise, vignetteA fare-alert card: a bold FROM → TO route lockup over a dotted flight-path arc, a big accent price, a trip label chip, and a dates line, set on a destination photo hero or a clean gradient sky.
Presets: jet (default), sunset, night
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
from | text | — | 18 | New York (JFK) |
to | text | yes | 18 | Lisbon (LIS) |
price | text | yes | 14 | $389 |
label | text | — | 30 | Round trip · Nonstop |
dates | text | — | 40 | Apr–May 2026 |
photo | image | — | — | Add a destination photo |
Hotel Deal hotel-deal
supports: background, gradient, typography, logo, platform, noise, vignetteA hotel/resort stay-deal card: a full-height room photo (or drawn placeholder) beside an offer badge, hotel name, location row, star rating, a short perks list, and a price block with a Book-now CTA.
Presets: coastal (default), sunset, luxe
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 22 | LIMITED OFFER |
name | text | yes | 40 | The Azure Cove Resort |
location | text | — | 40 | Marisol Bay, Southern Coast |
rating | text | — | 10 | 4.8 |
perks | multiline | — | 90 | Free breakfast Oceanfront pool Late checkout |
price | text | — | 14 | $189 |
unit | text | — | 18 | / night |
cta | text | — | 24 | Book now |
photo | image | — | — | Upload a hotel or room photo (optional) |
Trip Itinerary itinerary
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA trip itinerary card: a left summary (kicker, trip title, a meta row of pills) beside a right vertical timeline of auto-numbered days, each a connected dot with a short activity line.
Presets: paper (default), ocean, forest
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
kicker | text | — | 18 | Itinerary |
title | multiline | yes | 40 | 7 Days in the Highlands |
meta | text | — | 44 | Apr 2 - 9 · 2 travelers · 6 stops |
days | multiline | — | 160 | Arrive + old town wander Coastal cliffs day trip Vineyards + sunset dinner Markets + departure |
cta | text | — | 20 | Plan your trip |
Travel Deal travel-deal
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA travel deal card: a deal badge, an origin to destination route drawn as a dotted flight arc with a plane icon, a travel-dates line, a big fare price with a per-person note, an optional detail line, and a book CTA.
Presets: skyline (default), sunset, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 16 | Flight Deal |
origin | text | yes | 18 | Harborview |
destination | text | yes | 18 | Porto Verde |
dates | text | — | 30 | Mar 14 - Mar 22 |
price | text | — | 10 | $389 |
priceNote | text | — | 24 | per person, round trip |
detail | text | — | 30 | Nonstop · 11h 20m |
cta | text | — | 18 | Book now |
Fashion & Beauty (5)
Beauty Feature beauty-feature
supports: background, gradient, typography, logo, platform, vignetteAn elegant two-column beauty product feature: a full-height product image (or drawn bottle placeholder) beside a brand label, serif product name, tagline, a detail line, and a price chip.
Presets: blush (default), glow, noir
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
brand | text | — | 30 | Maison Lune |
title | text | yes | 40 | Velvet Glow Serum |
tagline | multiline | — | 110 | A weightless daily serum that leaves skin dewy, calm, and luminous. |
detail | text | — | 40 | Vegan · Cruelty-free · 30ml |
price | text | — | 16 | $48 |
image | image | — | — | Upload a product photo (optional) |
Lookbook lookbook
supports: background, image, typography, logo, platform, vignette, noiseA high-fashion lookbook cover: a full-bleed photo under a soft bottom scrim, with a small letter-spaced brand wordmark up top and a bottom-anchored season eyebrow, big serif collection title, and subtitle.
Presets: editorial (default), mono-luxe, bold
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
brand | text | — | 30 | Atelier Vireo |
title | text | yes | 40 | After Hours |
season | text | — | 30 | FALL ’26 |
subtitle | text | — | 60 | A study in shadow and tailored silhouettes |
photo | image | — | — | — |
New Arrivals new-arrival
supports: background, gradient, typography, logo, platform, vignetteA premium editorial-retail "new arrivals" mini-catalog: a letter-spaced eyebrow over an elegant serif collection title and subtitle, a row of three portrait product tiles (your photos, or distinct drawn garment placeholders), and a "from" price chip beside a shop-now CTA pill.
Presets: boutique (default), mono, blush
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 24 | NEW IN |
title | text | yes | 36 | Autumn Arrivals |
subtitle | text | — | 56 | Soft tailoring and earthy tones for the new season |
priceFrom | text | — | 22 | From $48 |
cta | text | — | 24 | Shop now |
products | image-list | — | 3 items | Add product photo |
Outfit of the Day outfit
supports: background, image, typography, logo, platform, vignette, noiseAn editorial outfit-of-the-day styling card: a full-height fashion photo on one side and, on the other, a small brand wordmark, an elegant serif look title, a list of itemized garments, an optional total-price chip, and a detail line.
Presets: editorial (default), neutral, bold
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
brand | text | — | 30 | Atelier Ver/Noir |
title | text | yes | 36 | Look 03 · Autumn |
items | multiline | — | 160 | Wool overcoat Silk knit top Tailored trousers Suede boots |
price | text | — | 16 | Total · $420 |
detail | text | — | 40 | Styled for cool city mornings |
photo | image | — | — | — |
Product Drop product-drop
supports: background, gradient, typography, logo, platform, noise, vignetteA loud streetwear product-drop hype card: a bold badge over a huge condensed product name, a drop-date line with a calendar icon and a price chip, a "limited" tag, and a centered product image on a radial accent glow (or a drawn shoebox placeholder).
Presets: hype (default), heat, ice
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 20 | DROP |
title | text | yes | 40 | Volt Runner 88 |
dropDate | text | — | 30 | Fri, Jun 27 · 10AM |
price | text | — | 16 | $180 |
tag | text | — | 30 | LIMITED EDITION |
image | image | — | — | — |
Health & Fitness (7)
Fitness App fitness-app
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA fitness/health app hero: a product lockup with an app icon (your uploaded icon/logo, or a letter-mark fallback) and a badge, a value headline, a subtitle, a headline stat row, and a get-the-app CTA, beside a drawn activity-rings widget with two mini stats.
Presets: pulse (default), mint, sunrise
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
badge | text | — | 12 | Health |
product | text | — | 18 | Pulse |
title | multiline | yes | 44 | Every Move Counts, Daily |
subtitle | text | — | 64 | Train, recover, and sleep in one app. |
stats | multiline | — | 90 | 24 | Workouts 18 | Day streak 7h | Avg sleep |
rings | multiline | — | 16 | 82 64 47 |
ringStats | multiline | — | 60 | 8,420 | Steps 62 min | Active |
cta | text | — | 18 | Get the app |
Meditation Session meditation-session
supports: background, gradient, typography, logo, platform, noise, vignetteA calm, spa-like meditation session card: a soft eyebrow, a gentle session title, a focus phrase split into soft chips, a guide line, and duration + level chips beside a glowing breathing-circle motif (or an optional session cover).
Presets: dawn (default), forest, night
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Daily Calm |
title | text | yes | 40 | Evening Wind-Down |
duration | text | — | 14 | 12 min |
level | text | — | 20 | Beginner |
focus | text | — | 56 | Breathe · Unwind · Sleep |
guide | text | — | 40 | with Maya R. |
cover | image | — | — | — |
Nutrition Facts nutrition-facts
supports: background, gradient, typography, logo, platform, noise, vignetteA nutrition-facts card: a left product column (name, tagline, highlight pills) beside a classic nutrition-label panel with a serving size, a big calories number, nutrient rows with percent daily value, and a footnote.
Presets: fresh (default), citrus, berry
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
product | text | yes | 22 | Cold-Pressed Greens |
tagline | text | — | 52 | Organic juice, nothing added. |
highlights | multiline | — | 60 | Vegan Gluten-free No added sugar |
serving | text | — | 28 | 1 bottle (350 ml) |
calories | text | — | 8 | 120 |
nutrients | multiline | — | 150 | Total Fat | 0 g | 0% Sodium | 35 mg | 2% Total Carbs | 26 g | 9% Sugars | 18 g | - Protein | 3 g | 6% Vitamin C | 90 mg | 100% |
footnote | text | — | 60 | Percent daily values based on a 2,000 calorie diet. |
Progress Transformation progress-card
supports: background, gradient, image, typography, logo, platform, noise, vignetteA fitness transformation card: side-by-side BEFORE/AFTER photos with an eyebrow program line, a bold title, a big accent stat, and a progress bar whose fill is driven by a percent, plus a motivational detail line.
Presets: pulse (default), mint, night
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | 12-Week Transformation |
title | text | yes | 40 | Stronger every week |
stat | text | — | 16 | -18 lbs |
percent | text | — | 4 | 75 |
detail | text | — | 50 | Down 4 sizes and feeling unstoppable. |
beforeAfter | image-list | — | 2 items | Add photo |
Wellness App wellness-app
supports: background, gradient, image, typography, logo, platform, noise, vignetteA calm meditation / mindfulness app hero: a product lockup and badge pill over a soft value headline, subtitle, up to three feature lines and a get-the-app CTA, with a phone mockup on the right. The lockup shows your uploaded icon/logo, or a letter-mark fallback.
Presets: calm (default), sage, sunrise
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
badge | text | — | 24 | New season |
product | text | — | 30 | Stillpond |
title | text | yes | 44 | Find your calm, one breath at a time |
subtitle | multiline | — | 120 | Guided breathing, gentle sleep stories, and daily check-ins to ease a busy mind. |
features | multiline | — | 120 | 5-minute breathing resets Sleep stories for deep rest Mood check-ins each morning |
cta | text | — | 24 | Get the app |
screenshot | image | — | — | Drop a screenshot to show inside the phone |
Wellness Challenge wellness-challenge
supports: background, gradient, typography, logo, platform, noise, vignetteA multi-day wellness challenge card with a day-grid sized to the day count, the first portion filled to the progress percent, a perks list, and a join CTA.
Presets: energy (default), sunrise, cool
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Challenge |
title | text | yes | 40 | 30-Day Move |
days | text | — | 6 | 30 |
tagline | text | — | 60 | One small habit, every single day. |
perks | multiline | — | 110 | Daily guided sessions Progress streak tracker Supportive group chat Finisher badge |
progress | text | — | 4 | 40 |
cta | text | — | 24 | Join free |
Workout Class workout-class
supports: background, gradient, image, typography, logo, platform, noise, vignetteA fitness class card: a class-type kicker, a bold class name, an instructor line, a row of stat blocks (duration, an intensity meter, calories), a schedule line, and a reserve CTA.
Presets: energy (default), sunrise, cool
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
kicker | text | — | 22 | HIIT · Studio 2 |
title | multiline | yes | 26 | Sunrise Burn |
instructor | text | — | 28 | with Coach Rae |
stats | multiline | — | 90 | 45 min | Duration High | Intensity 520 | Calories |
schedule | text | — | 34 | Mon + Wed · 6:30 AM |
cta | text | — | 20 | Reserve a spot |
avatar | image | — | — | — |
Music (6)
Album Release album-release
supports: background, gradient, image, typography, logo, platform, noise, vignetteA music release card: a square album-art panel (with a drawn vinyl fallback) beside an out-now badge, an artist name, a big album/track title, a meta row (genre, tracks, runtime), and a listen CTA.
Presets: neon (default), sunset, mono
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 14 | Out Now |
artist | text | yes | 24 | Velvet Harbor |
title | multiline | yes | 32 | Midnight Tides |
meta | text | — | 42 | Indie Pop · 12 tracks · 41 min |
cta | text | — | 18 | Listen now |
cover | image | — | — | — |
Concert Poster concert-poster
supports: background, gradient, typography, logo, platform, noise, vignetteA single-show concert announcement poster: a full-bleed artist photo (with a bold abstract drawn fallback) under an accent-duotone scrim, a huge condensed headliner name, support acts, a divider, and a date + venue row with a small doors/age/price detail line.
Presets: neon-night (default), indie, mono-bold
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
presenter | text | — | 36 | Live at The Hollow presents |
artist | text | yes | 34 | Marble Coast |
support | text | — | 56 | with Night Ferns · Pale Sun |
date | text | — | 30 | FRI · AUG 14 |
venue | text | — | 40 | The Hollow Ballroom |
detail | text | — | 44 | Doors 7PM · 18+ · $35 |
photo | image | — | — | — |
Now Playing now-playing
supports: background, gradient, image, typography, logo, platform, noise, vignetteA now-playing music-player card: a small album thumbnail, the track and artist, a progress bar with elapsed and total timestamps, drawn transport controls, and a waveform, styled as a streaming player.
Presets: verdant (default), violet, amber
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
track | text | yes | 30 | Neon Rivers |
artist | text | yes | 24 | Velvet Harbor |
album | text | — | 26 | Midnight Tides |
elapsed | text | — | 6 | 1:24 |
total | text | — | 6 | 3:47 |
upNext | text | — | 30 | Up next: Coastal Lights |
cover | image | — | — | — |
Playlist playlist
supports: background, gradient, image, typography, logo, platform, noise, vignetteA streaming-style playlist share card: a square cover tile beside a label, big playlist title, curator line, a numbered track list, and a song/duration meta line.
Presets: verdant (default), sunset, mono
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
label | text | — | 30 | Playlist |
title | text | yes | 40 | Late Night Drive |
subtitle | text | — | 60 | Curated by Midnight Radio |
tracks | multiline | — | 200 | Neon Tide — Violet Hours Slow Static — Paper Club Afterglow — Marlowe Drift |
meta | text | — | 40 | 24 songs · 1h 32m |
cover | image | — | — | Upload a cover (square works best) |
Single Release single-release
supports: background, gradient, typography, logo, platform, noise, vignetteA new-single release card: a square cover-art tile (with a vinyl-disc edge and a drawn fallback) beside a NEW SINGLE label, the track title, artist, an OUT NOW status pill, a row of streaming-service chips, and a listen CTA.
Presets: midnight (default), vinyl, pastel-pop
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
label | text | — | 24 | NEW SINGLE |
track | text | yes | 36 | Neon Undertow |
artist | text | — | 36 | Halcyon Drift |
status | text | — | 24 | OUT NOW |
services | text | — | 80 | Streaming · Radio · Download |
cta | text | — | 24 | Listen |
cover | image | — | — | — |
Tour Dates tour-dates
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA concert tour poster card: a tour eyebrow, a big artist/tour name, a list of tour stops (date, city/venue, and a tickets or sold-out tag), and a get-tickets CTA.
Presets: spotlight (default), punk, festival
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 22 | World Tour 2026 |
title | multiline | yes | 26 | Velvet Harbor |
dates | multiline | — | 200 | MAR 14 | Harborview, Tidal Hall | Tickets |
cta | text | — | 18 | Get tickets |
Video & Creator (6)
Breaking News breaking-news
supports: background, gradient, typography, logo, platform, noise, vignetteA TV-style breaking-news graphic: a bold accent kicker banner with a pulsing LIVE dot, a big multiline headline over an optional dark-scrimmed news photo, and a lower-third bar holding a ticker crawl, an outlet source, and a live time chip.
Presets: alert (default), network, mono-wire
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
kicker | text | — | 26 | BREAKING NEWS |
headline | multiline | yes | 110 | Coastal council approves overnight harbor rebuild after marathon vote |
ticker | text | — | 90 | Live updates · Crews mobilize at first light · Officials promise full briefing at noon |
source | text | — | 30 | The Daily Ledger |
time | text | — | 26 | LIVE · 6:42 PM |
photo | image | — | — | — |
Creator Milestone creator-milestone
supports: background, gradient, typography, logo, platform, noise, vignetteA creator milestone card: a milestone badge, a huge number with a unit label, a thank-you headline, a creator row (avatar + handle), and drawn confetti accents.
Presets: confetti (default), gold, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 14 | Milestone |
number | text | yes | 8 | 100K |
unit | text | — | 18 | Subscribers |
title | multiline | yes | 40 | Thank You for the Support |
handle | text | — | 22 | @thedailybuild |
subline | text | — | 50 | Couldn’t have done it without you. |
avatar | image | — | — | — |
Going Live going-live
supports: background, gradient, image, typography, logo, platform, noise, vignetteA going-live stream card: a pulsing LIVE badge, a viewer-count chip, a going-live eyebrow, a big stream title, a streamer row (avatar + handle), a schedule line, and a watch CTA, in a neon stream-overlay style.
Presets: neon (default), acid, cobalt
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 10 | LIVE |
eyebrow | text | — | 18 | Going Live |
title | multiline | yes | 40 | Building a Synth From Scratch |
handle | text | — | 22 | @nimbusplays |
viewers | text | — | 18 | 1.2K watching |
schedule | text | — | 30 | Today · 8:00 PM ET |
cta | text | — | 18 | Watch now |
avatar | image | — | — | — |
Podcast Episode podcast-episode
supports: background, gradient, typography, logo, platform, noise, vignetteA podcast episode announcement card: a square cover-art tile beside the show name, an accent episode chip, the bold episode title, a guest line, and a duration chip with a small waveform accent.
Presets: studio (default), warm, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
show | text | — | 40 | The Signal Room |
episode | text | — | 16 | EP. 042 |
title | multiline | yes | 60 | Designing for the long quiet |
guest | text | — | 40 | with Dana Okafor |
duration | text | — | 16 | 48 min |
cover | image | — | — | Square cover image (optional) |
Press Release press-release
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA formal press-release / official-announcement card: a "FOR IMMEDIATE RELEASE" tag and thin rule with the company logo at top-right, a dateline, a big editorial headline, a muted subhead, and a company + media-contact lockup in the footer.
Presets: newsroom (default), corporate, modern
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
tag | text | — | 30 | FOR IMMEDIATE RELEASE |
headline | multiline | yes | 110 | Northwind Labs unveils its open carbon-tracking platform |
subhead | multiline | — | 130 | The new toolkit lets any team measure and publish emissions data with a single, auditable workflow. |
dateline | text | — | 54 | SAN MERIDIAN — June 21, 2026 |
org | text | — | 36 | Northwind Labs |
contact | text | — | 50 | press@northwind.example |
logo | image | — | — | — |
Video Thumbnail video-thumbnail
supports: background, gradient, image, typography, logo, platform, noise, vignetteA bold video-thumbnail card: a huge punchy headline with one highlighted accent word, a creator face slot (with an avatar fallback), a circle-and-arrow accent, a channel line with a channel icon (your uploaded icon/logo, or a letter-mark fallback), and a duration badge.
Presets: punch (default), gamer, clean
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
channelIcon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
title | multiline | yes | 38 | I Tried This For 30 Days |
highlight | text | — | 16 | 30 Days |
badge | text | — | 8 | NEW |
channel | text | — | 22 | The Daily Build |
duration | text | — | 8 | 12:04 |
photo | image | — | — | — |
Gaming (6)
Esports Match-Up esports-matchup
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteAn esports versus card: a tournament eyebrow, two teams with optional logos, a central VS with the score, and a detail line for the round, format, time, or LIVE status.
Presets: arena (default), stadium, classic
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
tournament | text | — | 40 | Nova Invitational · Grand Final |
teamA | text | yes | 22 | Crimson Vanguard |
teamB | text | yes | 22 | Azure Syndicate |
scoreA | text | — | 4 | 2 |
scoreB | text | — | 4 | 1 |
status | text | — | 16 | LIVE |
detail | text | — | 48 | Map 4 · 7:30 PM ET |
logoA | image | — | — | Team A logo |
logoB | image | — | — | Team B logo |
Game Release game-release
supports: background, gradient, image, typography, logo, platform, noise, vignetteA game announcement card: a status badge, a big game title, a one-line tagline, genre pills, generic platform chips, a release date, and optional key art.
Presets: neon (default), fantasy, sci-fi
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 16 | OUT NOW |
title | multiline | yes | 48 | Echoes of the Verge |
tagline | multiline | — | 90 | A co-op survival roguelite set on a dying frontier. |
genres | multiline | — | 80 | Roguelite Survival Co-op |
platforms | text | — | 40 | PC · Console · Cloud |
date | text | — | 28 | Available March 2026 |
art | image | — | — | Key art |
Game Server game-server
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA multiplayer game-server status card with a live online/offline dot, the server name, a mono connect address, a big player count with a capacity bar, the game mode and tag pills, over an optional banner image.
Presets: survival (default), hardcore, creative
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
name | text | yes | 32 | Ironhold Survival |
status | text | — | 16 | Online |
address | text | — | 40 | play.ironhold.example:30420 |
players | text | — | 12 | 37 / 64 |
mode | text | — | 24 | Survival · PvE |
tags | multiline | — | 120 | Modded Whitelist Weekly resets |
banner | image | — | — | Banner art |
Leaderboard leaderboard
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA gaming leaderboard card: a season eyebrow and title over a ranked list of players with rank numbers (gold/silver/bronze for the top three), names, and scores, with the leader highlighted.
Presets: arena (default), inferno, toxic
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 20 | Season 4 · Ranked |
title | multiline | yes | 26 | Top Players |
entries | multiline | — | 180 | NovaStrike | 18,420 Vortex | 17,905 EmberWolf | 16,330 |
note | text | — | 36 | Updated hourly · Top 100 qualify |
Patch Notes patch-notes
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA game patch-notes card: a game lockup with a mono version chip and date over a bold update title and two columns, NEW additions and FIXES, each parsed one per line.
Presets: neon (default), inferno, arctic
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
game | text | — | 36 | Starfall Drift |
version | text | — | 16 | v2.4.0 |
title | text | yes | 44 | Season 4 Update |
added | multiline | — | 96 | New co-op horde mode Three maps in the Outer Rim Daily contracts and rewards |
fixed | multiline | — | 96 | Fixed rare crash on map load Matchmaking now far faster UI scaling on ultrawide |
date | text | — | 30 | June 20, 2026 |
Tournament Bracket tournament-bracket
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA tournament bracket card: an eyebrow and title over a drawn four-team single-elimination bracket (two semifinals with scores, connector lines feeding a final), ending in a highlighted champion slot.
Presets: arena (default), neon, ember
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 22 | Grand Finals |
title | multiline | yes | 24 | Bracket Stage |
teams | multiline | — | 120 | Nova | 2 Vortex | 1 Ember | 0 Quill | 2 |
champion | text | — | 16 | Quill |
prize | text | — | 24 | $50,000 Prize Pool |
Nonprofit (5)
Cause Awareness cause-awareness
supports: background, gradient, typography, logo, platform, noise, vignetteAn emotive awareness-campaign card: a drawn ribbon icon and campaign eyebrow over a bold statement title, a highlighted impact stat, and a hashtag chip with a call to action.
Presets: ocean (default), forest, bold
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Ocean Month |
title | multiline | yes | 60 | Every tide carries our choices |
stat | text | — | 30 | 8M tons of plastic / yr |
hashtag | text | — | 30 | #TurnTheTide |
cta | text | — | 30 | Pledge today |
Fundraiser fundraiser
supports: background, gradient, typography, logo, platform, noise, vignetteA donation goal card with the campaign title, a progress bar filled to the percent raised, the amount raised against the goal, a supporters line, and an optional Donate pill.
Presets: hopeful (default), warm, trust
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
org | text | — | 40 | Riverbend Community Fund |
title | text | yes | 46 | Build the new learning garden |
raised | text | — | 16 | $48,200 |
goal | text | — | 16 | $75,000 |
percent | text | — | 4 | 64 |
supporters | text | — | 30 | 1,204 donors |
cta | text | — | 24 | Donate |
Gala Invite gala-invite
supports: background, gradient, typography, logo, platform, vignette, noiseAn elegant, centered charity-gala invitation: a host line over a high-contrast serif event title, the date and time set between thin gold rule dividers, a venue and dress-code/ticket detail, and an optional reservation pill.
Presets: gold (default), midnight, rose
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
org | text | — | 36 | The Lantern Hope Foundation |
title | text | yes | 40 | Annual Benefit Gala |
datetime | text | — | 44 | Saturday, October 18 · 7:00 PM |
venue | text | — | 50 | The Marble Hall · Rivermoor |
detail | text | — | 50 | Black tie · Tickets $150 |
cta | text | — | 24 | Reserve a table |
Impact Report impact-report
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA nonprofit annual impact card: an org lockup and an IMPACT eyebrow over a bold title and summary, with a row of up to three big result metrics (value + label, parsed from the metrics slot) and a closing detail line.
Presets: trust (default), forest, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
org | text | — | 36 | Riverbend Community Trust |
title | text | yes | 44 | Our 2026 Impact |
summary | multiline | — | 130 | A year of meals shared, gardens grown, and neighbors lifted — here is what your support made possible. |
metrics | multiline | — | 120 | 1.2M | meals served 48 | communities reached 92% | to programs |
detail | text | — | 50 | Read the full report |
Volunteer Call volunteer-call
supports: background, gradient, typography, logo, platform, noise, vignetteA friendly volunteer-recruitment card with an accent eyebrow pill, a bold title, drawn clock (when) and pin (where) rows, a roles/perks detail line, and an optional sign-up CTA pill.
Presets: community (default), warm, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Volunteers Wanted |
title | text | yes | 48 | Lend a hand at the community garden |
when | text | — | 40 | Saturday, June 21 · 9am – 1pm |
where | text | — | 40 | Riverbend Park · East Lawn |
detail | multiline | — | 120 | Planting, painting & welcome crew. Snacks, gloves and good company provided. |
cta | text | — | 24 | Sign up |
Seasonal & Holiday (4)
Birthday birthday
supports: background, gradient, image, typography, logo, platform, noise, vignetteA festive birthday card: a “Happy Birthday” eyebrow over a huge celebrant name, an optional balloon age badge and a round photo (with a drawn cake fallback), a warm message and a sign-off, framed by scattered confetti and balloons.
Presets: confetti (default), pastel, night
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Happy Birthday |
name | text | yes | 30 | Jordan |
age | text | — | 6 | 30 |
photo | image | — | — | Round photo of the birthday person |
message | multiline | — | 130 | Wishing you the happiest of days and a year full of good things. |
signoff | text | — | 40 | — From all of us |
Countdown countdown
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA coming-soon countdown card: an eyebrow and bold title over a row of rounded days/hours/minutes cells with big mono digits, a target date line, and an optional call-to-action pill.
Presets: launch (default), daylight, neon
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Launching in |
title | text | yes | 44 | The Big Drop |
days | text | — | 4 | 12 |
hours | text | — | 4 | 08 |
minutes | text | — | 4 | 45 |
date | text | — | 40 | Saturday, March 14 · 9:00 AM PT |
cta | text | — | 24 | Get notified |
Holiday Greeting holiday-greeting
supports: background, gradient, typography, logo, platform, noise, vignetteA brand-neutral festive greeting card: an elegant centered serif greeting with a short warm message and a sign-off, framed by scattered snowflake and sparkle ornaments kept clear of the text.
Presets: winter (default), evergreen, cozy
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | With gratitude |
title | text | yes | 40 | Season’s Greetings |
message | multiline | — | 140 | Wishing you warmth, rest, and bright days ahead through the season and into the new year. |
signoff | text | — | 40 | — The Team |
Seasonal Sale seasonal-sale
supports: background, gradient, typography, logo, platform, noise, vignetteA festive seasonal sale promo: a seasonal eyebrow, a huge condensed discount figure, a headline, a dashed-border coupon code chip, a dates line, and a call-to-action pill, framed with light seasonal decor.
Presets: frost (default), holiday, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Winter Sale |
headline | text | yes | 40 | Everything must go |
discount | text | — | 20 | 50% OFF |
code | text | — | 20 | FROST50 |
dates | text | — | 40 | Now through December 31 |
cta | text | — | 24 | Shop now |
Editorial (18)
Art Deco art-deco
supports: background, typography, logo, platform, vignette, noiseA 1920s Art Deco card with a thin gold double-line frame, symmetrical sunburst ornaments, and a centered high-contrast serif title over an eyebrow, subtitle, and footer line.
Presets: gatsby (default), emerald, noir
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | An Evening Of |
title | text | yes | 46 | The Gilded Hour |
subtitle | multiline | — | 120 | Music, dancing, and late-night glamour beneath the chandeliers. |
footer | text | — | 50 | Saturday · Nine O'Clock · Black Tie |
Article Card article-card
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA clean blog/article share card with a category tag, a big headline, an optional excerpt, and an author row (avatar, name, read time).
Presets: ink (default), paper, gradient
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
category | text | — | 24 | Engineering |
title | multiline | yes | 90 | How we cut our build times in half |
excerpt | multiline | — | 140 | A short summary that pulls readers in. |
author | text | — | 40 | Jordan Lee |
meta | text | — | 40 | 5 min read |
avatar | image | — | — | Author photo |
Checklist checklist
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA 'the X checklist' editorial OG card: an eyebrow, a bold title and subtitle, then up to six checklist rows whose checkbox is filled or empty based on each row's state word, with an optional computed progress line and a source.
Presets: paper (default), ink, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 28 | Checklist |
title | text | yes | 46 | The pre-launch checklist |
subtitle | text | — | 90 | Everything to tick off before you ship to the public. |
items | multiline | — | 280 | done | Write the launch post todo | Set up analytics |
progress | text | — | 24 | 4 of 6 done |
source | text | — | 36 | yourblog.com |
Constructivist constructivist
supports: background, typography, logo, platform, noiseA Russian-constructivist poster card: bold red/black diagonal bands and hard geometric shapes around a heavy condensed uppercase headline set in a strong asymmetric block.
Presets: agitprop (default), industrial, avant
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Manifesto No. 7 |
title | multiline | yes | 80 | Build the Future With Bold Lines |
subtitle | multiline | — | 110 | A call to the makers, the builders, and the restless minds of tomorrow. |
footer | text | — | 50 | The Workshop · Issue One |
Editorial editorial
supports: background, image, typography, logo, platform, vignetteA magazine split layout with a kicker, big headline and byline beside a featured photo.
Presets: magazine (default), newsprint, long-read
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
kicker | text | — | 30 | Section / category |
headline | text | yes | 90 | Your big headline goes here |
byline | text | — | 48 | By Author Name · Publication |
photo | image | — | — | Featured image |
FAQ faq
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA clean FAQ / Q&A card: an eyebrow and title over up to three question-and-answer rows, each with a circled accent Q mark, a bold question, and a muted answer, plus a footer line.
Presets: paper (default), ink, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | FAQ |
title | text | yes | 44 | Good to know |
items | multiline | — | 300 | How do I get started? | Open the editor, pick a template, and tweak the text. Is my work saved? | Everything stays in your browser — nothing is uploaded. |
footer | text | — | 40 | More answers in the help center |
How-To how-to
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA numbered step-by-step tutorial card: an eyebrow, a title, and up to four numbered steps in a vertical list, with an optional footer.
Presets: cobalt (default), sunrise, slate
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
kicker | text | — | 24 | Tutorial |
title | multiline | yes | 64 | Deploy a Next.js app in 4 steps |
steps | multiline | — | 200 | Install the CLI Connect your repo Set your env vars Click deploy |
footer | text | — | 40 | freeogimage.com/guides |
Lead Magnet lead-magnet
supports: background, gradient, image, typography, logo, platform, noise, vignetteA content-marketing gated-download cover: a Free Guide badge, a kicker and big title, a subtitle, up to three what-you'll-learn bullets, and a download CTA beside a tilted ebook/PDF book mockup.
Presets: ink (default), daylight, forest
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 28 | Free Guide |
kicker | text | — | 30 | Ebook |
title | text | yes | 50 | The Ship-Faster Playbook |
subtitle | multiline | — | 120 | A practical field guide for small teams shipping their first product. |
bullets | multiline | — | 150 | Scope a launch in a week Write specs people read Measure what matters |
cta | text | — | 24 | Download free |
cover | image | — | — | Cover image (a drawn cover is used if empty) |
Listicle listicle
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA "Top N" listicle / roundup share card: an eyebrow and bold headline over a numbered list (big accent rank numbers computed from each item's index) with a source line at the bottom.
Presets: bold (default), paper, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Roundup |
title | text | yes | 50 | 10 Best Tools for Indie Devs |
subtitle | text | — | 80 | Hand-picked picks that ship faster and cost less |
items | multiline | — | 200 | A linter that fixes itself The zero-config bundler Type-safe form builder |
source | text | — | 40 | yourblog.com |
Magazine Cover magazine-cover
supports: background, image, typography, logo, platform, vignette, noiseA glossy magazine cover: a full-bleed cover photo under a soft scrim, a huge serif masthead across the top with an issue/date line, a large lower headline, a stack of cover-line teasers down one side, and a drawn barcode in the corner.
Presets: couture (default), editorial, noir
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
masthead | text | yes | 18 | ATELIER |
issue | text | — | 30 | ISSUE 14 · MARCH |
headline | text | yes | 48 | The quiet art of slow living |
coverlines | multiline | — | 160 | City escapes for the weekend The new minimal wardrobe Kitchens that work harder Notes on a softer routine |
photo | image | — | — | — |
Minimal Type minimal-type
supports: background, gradient, typography, logo, platformWhitespace-forward Swiss editorial layout with a tiny eyebrow, a very large headline, and a quiet footer line.
Presets: swiss (default), serif-editorial, bold-sans
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Issue 01 — Field Notes |
title | text | yes | 80 | A headline that earns the whitespace around it |
footer | text | — | 48 | freeogimage.com / June 2026 |
Newsletter newsletter
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA newsletter-issue share card: a masthead with an envelope mark, an issue/date line, a big headline, and a dek, with an optional read-online CTA.
Presets: paper (default), ink, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
masthead | text | — | 30 | The Weekly Byte |
issue | text | — | 36 | Issue #42 · June 2026 |
title | multiline | yes | 80 | The state of web performance in 2026 |
dek | multiline | — | 150 | Core Web Vitals, RSC, and the tools worth your attention this month. |
cta | text | — | 24 | Read online |
Newsprint newsprint
supports: background, typography, logo, platform, noiseA front-page newspaper layout: a centered masthead between double rules with a section/date kicker, a giant serif headline, an italic standfirst deck, and a byline.
Presets: broadsheet (default), times, tabloid
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
masthead | text | yes | 28 | THE DAILY LEDGER |
kicker | text | — | 36 | WORLD · MARCH 14, 2026 |
headline | multiline | yes | 84 | City Unveils Plan to Reclaim the Old Harbor District |
standfirst | multiline | — | 140 | After years of debate, planners outline a decade-long effort to turn shuttered warehouses into parks, housing, and a waterfront promenade. |
byline | text | — | 40 | By A. Reporter |
Scrapbook scrapbook
supports: background, image, typography, logo, platform, noise, vignetteA warm, handmade journal-collage card: a slightly rotated polaroid photo with washi-tape strips beside a handwritten-feel title, a short note paragraph, a date chip, and a caption.
Presets: kraft (default), linen, noir
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
caption | text | — | 30 | from the summer journal |
title | text | yes | 40 | A Day by the Lake |
note | multiline | — | 120 | We packed sandwiches and chased the light until the sky went gold. Best afternoon of the whole trip. |
date | text | — | 24 | June 14 |
photo | image | — | — | — |
State of Report state-of-report
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA "State of X" industry / survey report cover: an eyebrow, a big report title, a subtitle, a row of up to 3 headline stats (value | label), a byline, and a CTA — with faint drawn data motifs.
Presets: midnight (default), daylight, sunset
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Annual Report |
title | text | yes | 44 | The State of Indie SaaS 2026 |
subtitle | multiline | — | 110 | What 4,200 founders told us about building, shipping, and growing this year. |
stats | multiline | — | 120 | 68% | ship weekly $9.4k | median MRR 2.3x | YoY growth |
org | text | — | 36 | by Frontwave Labs |
cta | text | — | 24 | Read the report |
Typographic Poster typographic
supports: background, gradient, typography, logo, platform, noise, vignetteAn oversized typographic statement poster where a gigantic, tightly-leaded headline fills the frame between a tiny eyebrow and a footer byline.
Presets: statement (default), highlighter, sans-bold
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 40 | Issue No. 07 |
title | multiline | yes | 90 | Say it loud, say it once, say it big. |
footer | text | — | 60 | freeogimage.com · June 2026 |
Ultimate Guide ultimate-guide
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA flagship long-form pillar-page cover: a 'The Ultimate Guide' badge and edition kicker, a big serif title, a subtitle, a numbered chapters / table-of-contents list, a meta line, and an author byline beside an optional tall hero illustration.
Presets: editorial (default), midnight, sunset
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 28 | The Ultimate Guide |
kicker | text | — | 30 | 2026 Edition |
title | text | yes | 56 | The Ultimate Guide to Indie SaaS |
subtitle | multiline | — | 120 | Everything from first commit to first paying customer, in one place. |
chapters | multiline | — | 200 | Finding a problem worth solving Shipping a lovable MVP Pricing and packaging Launching to your first users Growth loops that compound |
meta | text | — | 50 | 12 chapters · 40 min read |
author | text | — | 36 | by the Frontwave team |
cover | image | — | — | Cover / hero image (a drawn stacked-pages motif is used if empty) |
Zine Collage zine
supports: background, typography, logo, platform, noiseA punk ransom-note zine card: the title cut into boxed letter-blocks with alternating tilts and black/white/accent fills, taped down over photocopied paper, with a torn kicker strip, a typewriter subtitle block, and a tag chip.
Presets: photocopy (default), punk, riso-pink
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
kicker | text | — | 30 | ISSUE No. 07 |
title | text | yes | 40 | Cut & Paste |
subtitle | multiline | — | 120 | Hand-made, photocopied, and stapled in a basement on a Tuesday night. |
tag | text | — | 30 | DIY OR DIE |
Developer (22)
API Reference api-reference
supports: background, gradient, grid, typography, logo, platform, noise, vignetteAn API reference card: an 'API Reference' eyebrow, a METHOD badge with a mono endpoint path, a title and description, and a rounded code panel showing a faux JSON response.
Presets: indigo (default), emerald, slate
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 18 | API Reference |
method | text | — | 8 | GET |
path | text | — | 40 | /v1/images/generate |
title | multiline | yes | 40 | Generate an Image |
description | text | — | 80 | Create a new render from a template id and slot values. |
code | multiline | — | 160 | { "id": "img_8f2a", "status": "ready" } |
Architecture architecture
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA system-architecture diagram card: an eyebrow, bold title and subtitle above a drawn left-to-right flow of up to four labelled node boxes (each with a glyph, label and sublabel) connected by arrows, plus a detail line.
Presets: blueprint (default), midnight, daylight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 28 | Architecture |
title | text | yes | 44 | How it works |
subtitle | multiline | — | 100 | Requests flow from the edge through the queue and into durable storage. |
nodes | multiline | — | 160 | Client | Browser API | Edge Queue | Async Database | Postgres |
detail | text | — | 60 | End to end in under 40 ms |
Benchmark benchmark
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA performance-comparison card whose hero is a horizontal bar chart built from up to 4 'label | value' rows, with each bar width scaled to the max and the winning (largest) bar highlighted in the accent color.
Presets: speed (default), daylight, ember
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Benchmark |
title | text | yes | 44 | 3× faster builds |
subtitle | multiline | — | 110 | Median cold-start time across 1,000 runs on identical hardware. |
bars | multiline | — | 160 | Ours | 1240 Tool A | 720 Tool B | 540 Tool C | 410 |
unit | text | — | 16 | ops/sec |
detail | text | — | 50 | Higher is better · v3.0 · 2026-06 |
Build Status build-status
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA CI build-status card: a product lockup with a 'CI Pipeline' eyebrow and a commit · branch line (your uploaded icon/logo, or a letter-mark fallback), a bold title and a shields-style build badge whose color is derived from the overall state, and a row of pipeline stage nodes each with a state-colored icon and duration.
Presets: midnight (default), daylight, forest
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
product | text | — | 30 | Aurora API |
eyebrow | text | — | 26 | CI Pipeline |
title | text | yes | 40 | Build passing |
subtitle | multiline | — | 90 | All checks green on main — ready to ship. |
overall | text | — | 16 | passed |
stages | multiline | — | 200 | Lint | passed | 12s Build | passed | 1m04s Test | passed | 48s Deploy | running | 9s |
commit | text | — | 30 | a1b2c3d · main |
badge | text | — | 24 | build: passing |
Changelog changelog
supports: background, gradient, grid, typography, logo, platformRelease-notes card with a version chip, headline, and an accented bullet list.
Presets: vibrant (default), mono, bordered
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
version | text | — | 16 | v2.4.0 |
title | text | yes | 70 | What's new in this release |
bullets | multiline | — | 200 | New dark mode Faster exports Bug fixes |
Cheat Sheet cheatsheet
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA developer cheat-sheet / quick-reference card: an eyebrow, a bold title and subtitle, then a list of 'key | action' rows each shown as a drawn keycap chip plus its description.
Presets: carbon (default), paper, terminal
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Cheat Sheet |
title | text | yes | 40 | Keyboard Shortcuts |
subtitle | text | — | 60 | The moves you reach for every single day. |
rows | multiline | — | 220 | Cmd K | Open the command palette Cmd / | Toggle a line comment |
footer | text | — | 40 | v3.2 · print me |
CLI Tool cli-tool
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA CLI / SDK install hero: a product lockup (a drawn '>_' terminal mark + name) with a version chip, a bold title and subtitle, a prominent install command in a drawn terminal panel with a copy icon, up to three example commands, and a row of feature tags.
Presets: matrix (default), cyan, amber
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
product | text | — | 30 | flowcli |
version | text | — | 16 | v1.4.0 |
title | text | yes | 44 | Ship from your terminal |
subtitle | multiline | — | 120 | A fast, scriptable CLI for building, previewing, and deploying — no dashboard required. |
install | text | — | 60 | brew install flowcli |
commands | multiline | — | 90 | flow init flow build flow deploy --prod |
tags | text | — | 60 | zero-config · cross-platform · scriptable · fast |
Code Snippet code-snippet
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA dev-tip card with an eyebrow and bold title above a rounded code window — traffic-light title bar, filename tab, language chip, and a line-numbered monospace snippet — with a caption below.
Presets: midnight (default), solarized, neon
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | Dev Tip |
title | text | yes | 50 | Debounce without a library |
lang | text | — | 16 | ts |
filename | text | — | 30 | debounce.ts |
code | multiline | — | 320 | export function debounce(fn, ms) { let t; return (...args) => { clearTimeout(t); t = setTimeout(() => fn(...args), ms); }; } |
caption | text | — | 90 | Wrap any handler to cut down on noisy re-runs. |
Dark Terminal dark-terminal
supports: background, grid, typography, logo, platform, noiseTerminal/IDE aesthetic with monospace type, window chrome, and a neon prompt.
Presets: classic-green (default), dracula, nord, solarized
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
prompt | text | — | 6 | $ |
command | text | yes | 60 | npx create-awesome-app |
output | multiline | — | 160 | ✓ Ready in 0.3s |
filename | text | — | 28 | ~/projects |
Dev Tool dev-tool
supports: background, gradient, typography, logo, platform, noise, vignette, imageA developer-tool hero card: split layout with a left product lockup, headline, tagline, and feature tags, beside a synthetically drawn faux browser inspector panel with a highlighted element and a CSS-line tooltip.
Presets: cyan (default), emerald, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
product | text | — | 26 | Inspectly |
title | multiline | yes | 64 | Inspect any element in one click |
subtitle | multiline | — | 120 | A browser inspector that shows you the exact classes behind every pixel. |
features | multiline | — | 90 | Live edit Class autocomplete Dark mode |
addressBar | text | — | 40 | localhost:3000 |
selector | text | — | 32 | .btn-primary |
cssLine | text | — | 40 | padding: 12px 22px |
screenshot | image | — | — | Optional — replaces the faux inspector panel |
Docs Hero docs-hero
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA documentation landing hero: a product lockup with a version chip, a big title and subtitle, a search-bar mockup and CTA pill, beside a drawn docs layout with a parsed section nav.
Presets: daylight (default), midnight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
product | text | — | 30 | Northwind |
version | text | — | 16 | v4 |
title | text | yes | 44 | Documentation |
subtitle | multiline | — | 120 | Everything you need to build, ship, and scale — guides, references, and examples. |
search | text | — | 40 | Search the docs… |
sections | text | — | 60 | Quickstart · API · Guides · CLI · Deploy |
cta | text | — | 24 | Read the docs |
Error Page error-page
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA generic error-page share card: a giant accent status code with a light glitch offset, a bold title, a friendly subtitle, an optional mono path chip for the bad route, a 'Back to home' CTA pill, and a small brand lockup (your uploaded icon/logo, or a letter-mark fallback).
Presets: midnight (default), daylight, forest
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
icon | image | — | — | Square icon/logo (a letter-mark is used if empty) |
code | text | yes | 6 | 404 |
title | text | yes | 44 | Page not found |
subtitle | multiline | — | 120 | The page you are looking for moved or never existed. Check the URL or head back home. |
path | text | — | 40 | /docs/old-link |
cta | text | — | 26 | Back to home |
brand | text | — | 26 | Aurora Docs |
Glossary glossary
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA developer glossary card that presents a tech term like a dictionary entry — category tag, big headword, pronunciation/part-of-speech line, and a definition body — in a dark, syntax-accented dev aesthetic.
Presets: midnight-lime (default), carbon-cyan, slate-magenta
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
tag | text | — | 24 | TERM |
term | text | yes | 28 | Idempotent |
pronunciation | text | — | 48 | /aɪˈdɛm.pə.tənt/ · adjective |
definition | multiline | yes | 220 | An operation that produces the same result no matter how many times it is applied. Calling it once or a hundred times leaves the system in the same state. |
Integration integration
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA focused two-party integration card: two round logo tiles joined by a drawn connector node, under an Integration badge, a headline, a subtitle, the two product names, and a detail line.
Presets: connect (default), midnight, mint
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 30 | Integration |
title | text | yes | 44 | Now connects with your stack |
subtitle | multiline | — | 120 | Sync data both ways and ship faster — no glue code to maintain. |
nameA | text | — | 24 | Flowdeck |
nameB | text | — | 24 | Pulsegrid |
detail | text | — | 60 | Two-way sync · No code |
logoA | image | — | — | Square logo (an initial is used if empty) |
logoB | image | — | — | Square logo (an initial is used if empty) |
Package Card package-card
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA package-registry card: a registry chip with the package name and version, a description, a prominent mono install command, a parsed stat row, keyword tags, and a license chip.
Presets: carbon (default), crimson, forest
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
registry | text | — | 14 | npm |
name | text | yes | 36 | @toolkit/core |
version | text | — | 16 | 2.4.1 |
description | multiline | — | 120 | A tiny, dependency-free toolkit for building fast modern apps. |
install | text | — | 60 | npm i @toolkit/core |
stats | multiline | — | 120 | 1.2M | weekly downloads 26 kB | size 0 | deps |
tags | text | — | 60 | typescript · esm · zero-deps · tree-shakeable |
license | text | — | 20 | MIT |
Pull Request pull-request
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA code-review / pull-request card: a repo lockup with a PR number chip, a status pill whose color + icon are derived from the status word, a PR title and summary, a branch-from → branch-to row, a green/red diff stat, and a cluster of reviewer avatars.
Presets: midnight (default), daylight, forest
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
repo | text | — | 30 | acme/core |
prNumber | text | — | 8 | #482 |
status | text | — | 16 | merged |
title | text | yes | 60 | Add passwordless sign-in flow |
detail | text | — | 90 | Replaces the legacy session handshake and adds rotating refresh tokens. |
branchFrom | text | — | 24 | feature/auth |
branchTo | text | — | 16 | main |
adds | text | — | 8 | +1,204 |
dels | text | — | 8 | -318 |
reviewer | text | — | 24 | Mira Vance |
avatars | image-list | — | 3 items | Upload up to 3 faces |
Quickstart quickstart
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA getting-started / README OG card: a product lockup, a Quickstart eyebrow and bold title, a subtitle, and a numbered step list whose accent step numbers are computed from index, each pairing a short label with a mono command in a drawn code pill.
Presets: carbon (default), daylight, forest
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
product | text | — | 30 | Northwind CLI |
eyebrow | text | — | 26 | Quickstart |
title | text | yes | 44 | Up and running in 3 steps |
subtitle | multiline | — | 90 | Install, configure, and ship your first build in under five minutes. |
steps | multiline | — | 200 | Install | npm i -g northwind Configure | northwind init my-app Run | northwind dev |
footer | text | — | 50 | Full docs at northwind.dev/start |
Repo Card repo-card
supports: background, gradient, grid, typography, logo, platform, noise, vignetteAn open-source repo card: a repo lockup (repo icon + owner/name), a description, a row of topic tags, and a stat row (stars, forks, and a language with a colored dot).
Presets: carbon (default), midnight, forest
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
repo | text | yes | 30 | northwind/aurora |
description | multiline | — | 110 | A tiny, fast state manager for modern web apps — zero boilerplate. |
topics | text | — | 50 | state · hooks · ui |
stars | text | — | 10 | 12.4k |
forks | text | — | 10 | 840 |
language | text | — | 18 | TypeScript |
Security Advisory security-advisory
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA CVE-style security advisory card: an eyebrow with a shield glyph plus a mono advisory-id chip, a big severity badge whose color and label are derived from the severity word, an optional CVSS chip, a bold title and summary, an Affected/Patched meta row, and a detail action line.
Presets: critical (default), daylight, slate
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 28 | Security Advisory |
advisoryId | text | — | 24 | OSV-2026-0142 |
severity | text | yes | 14 | critical |
title | text | yes | 60 | Auth bypass via crafted session token |
summary | multiline | — | 150 | A forged session token can bypass the signature check and impersonate any user. Self-hosted instances are affected. |
affected | text | — | 40 | < 2.4.1 |
patched | text | — | 40 | 2.4.1 |
cvss | text | — | 8 | 9.1 |
detail | text | — | 50 | Update immediately |
Status Page status-page
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA system-status card: an org lockup with a 'System Status' eyebrow and an updated timestamp, a big status banner whose color and icon are derived from the overall state, and a list of component rows each with a state-colored status dot.
Presets: operational (default), midnight, incident
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
org | text | — | 30 | Northwind Cloud |
title | text | — | 36 | System Status |
overall | text | — | 16 | operational |
headline | text | yes | 60 | All systems operational |
components | multiline | — | 160 | API | operational Dashboard | operational Webhooks | degraded |
updated | text | — | 40 | Updated 2 min ago |
Tech Stack tech-stack
supports: background, gradient, grid, image, typography, logo, platform, noise, vignetteA "built with" tech-stack card: an eyebrow, bold title, and subtitle over a tidy 4-up grid of tech tiles parsed from a list, each showing an uploaded logo or a letter-tile fallback, with optional layer labels and a detail line.
Presets: midnight (default), daylight, forest
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 26 | Built with |
title | text | yes | 42 | Our stack |
subtitle | multiline | — | 100 | The tools we reach for to ship fast and keep things boring. |
items | multiline | — | 160 | React TypeScript Postgres Redis Tailwind Node.js Docker Vite |
groups | text | — | 60 | Frontend · Backend · Infra |
detail | text | — | 50 | Open source · MIT licensed |
logos | image-list | — | 8 items | Add logo |
Uptime uptime
supports: background, gradient, grid, typography, logo, platform, noise, vignetteAn uptime / SLA card: an org lockup with a 'Last 90 days' eyebrow and an updated line, a huge accent uptime percentage beside a title and subtitle, a day-by-day uptime bar strip whose bar colors are derived from per-day state words, and up to three slot-driven stat pills.
Presets: operational (default), midnight, trust
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
org | text | — | 30 | Northwind Cloud |
eyebrow | text | — | 26 | Last 90 days |
uptimePct | text | yes | 10 | 99.98% |
title | text | — | 40 | Reliable by design |
subtitle | multiline | — | 100 | Monitored every minute from regions worldwide. |
bars | multiline | — | 220 | up, up, up, degraded, up, up, down, up, up, up |
stats | multiline | — | 120 | 120ms | avg response 0 | incidents 4 | regions |
updated | text | — | 36 | Updated 2 min ago |
Social (8)
Event Card event
supports: background, gradient, image, typography, logo, platform, vignettePodcast, talk, or webinar card with a title, host, date-time, and a rounded cover image.
Presets: talk (default), episode, webinar
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
title | text | yes | 80 | The Future of Frontend |
host | text | — | 48 | with Jane Doe |
datetime | text | — | 40 | Thu, Jun 26 · 6:00 PM PT |
cover | image | — | — | Square cover image |
Giveaway giveaway
supports: background, gradient, image, typography, logo, platform, noise, vignetteA fun, energetic contest card: a GIVEAWAY badge pill over a bold title, a highlighted prize, a numbered how-to-enter list, and a deadline chip — alongside the prize photo (or a drawn gift-box placeholder).
Presets: confetti (default), mint, night
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
badge | text | — | 18 | GIVEAWAY |
title | text | yes | 44 | Win our big summer bundle |
prize | text | — | 50 | Win a $500 gift card |
steps | multiline | — | 160 | Follow this account Like this post Tag two friends Share to your story |
deadline | text | — | 40 | Ends March 31 |
photo | image | — | — | Add prize photo |
Link in Bio link-in-bio
supports: background, gradient, image, typography, logo, platform, noise, vignetteA centered link-hub share card: a round avatar (or initials disc), a display name, an accent handle, a short bio, and a vertical stack of up to five full-width link pills.
Presets: sunset (default), mono, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
name | text | yes | 30 | Robin Meadows |
handle | text | — | 30 | @robinmakes |
bio | multiline | — | 70 | Designer & maker sharing tutorials and side projects. |
links | multiline | — | 160 | Latest project Newsletter Shop the prints Book a call Say hello |
avatar | image | — | — | — |
Logo Wall logo-wall
supports: background, gradient, grid, typography, logo, platform, noise, vignetteA "trusted by / featured in" directory card: headline plus a tidy grid of rounded-square letter-mark logo tiles parsed from a brand list, with an optional count line.
Presets: violet (default), sunset, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
headline | text | yes | 42 | List your SaaS |
subtitle | multiline | — | 130 | Get discovered by founders, makers, and buyers in the fastest-growing software directory. |
logos | image-list | — | 12 items | Add logo |
brands | multiline | — | 160 | Nimbus Quill Orbit Pineline Vaultly Draftbox |
count | text | — | 48 | Join 1,200+ tools already listed |
This or That Poll poll
supports: background, gradient, typography, logo, platform, noise, vignetteA this-or-that poll-result card: a bold question over two option rows, each with a percentage bar whose fill is computed from the slots, the leading option highlighted, and a total-votes footer.
Presets: versus (default), clean, night
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
question | text | yes | 60 | Which one wins? |
optionA | text | — | 40 | Morning runs |
percentA | text | — | 4 | 62 |
optionB | text | — | 40 | Late-night sessions |
percentB | text | — | 4 | 38 |
footer | text | — | 40 | 1,204 votes |
Quote quote
supports: background, gradient, image, typography, logo, platformA large pull-quote with a big opening quote mark, author name, role, and round avatar.
Presets: big-quote (default), card, centered
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
quote | multiline | yes | 220 | Good ideas earn their place; everything else is just noise. |
author | text | — | 40 | Adrian Mercer |
role | text | — | 48 | Design Lead, Lumenstack |
avatar | image | — | — | Square headshot |
Meet the Team team
supports: background, gradient, typography, logo, platform, noise, vignetteA friendly roster card: an eyebrow and bold title over a row of avatar discs — each person's uploaded photo, or a colored disc with their initials — with their name and role, plus a closing tagline.
Presets: bright (default), indigo, sunset
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
eyebrow | text | — | 30 | We're growing |
title | text | yes | 48 | Meet the team |
members | multiline | — | 160 | Ada Brightwater | Founder Leo Marsh | Engineering Mira Vance | Design |
avatars | image-list | — | 5 items | Add photo |
tagline | text | — | 60 | Building good things, together. |
Testimonial Wall testimonial-wall
supports: background, gradient, grid, typography, logo, platform, noise, vignette, imageA testimonial wall: a headline and subtitle over a 2×2 grid of short quote cards, each with a small avatar letter-mark, a name, and a role.
Presets: daylight (default), violet, midnight
| slot id | type | required | max | placeholder |
|---|---|---|---|---|
headline | text | yes | 40 | Loved by Teams Everywhere |
subtitle | text | — | 56 | Real words from people who switched. |
testimonials | multiline | — | 300 | Cut our setup time in half. | Maya Chen, Northwind The best tool we've adopted this year. | Leo Park, Vantage Our team actually enjoys using it. | Sara Ode, Meadow Support is genuinely incredible. | Tom Reed, Orbit |
avatars | image-list | — | 4 items | Add photo |