OGFreeOGImageOpen editor

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.

No signup, no API keyStateless & private — nothing stored200 templates · 5 sizes

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.png

Use 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:

ParamTypeNotes
configbase64url(JSON)A full OgImageConfig (see below). Takes precedence over the convenience params.
templatestringTemplate id (required if no config). See the reference below.
presetstringPreset id; defaults to the template's default preset.
platformstringOutput size id (og, twitter, linkedin, facebook, square). Default og.
titlestringConvenience: fills the template's preview title slot (often `title`). An explicit slot.<id> wins.
descriptionstringConvenience: fills the template's preview description slot (often `subtitle`, not literally `description`).
slot.<id>stringSet 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-Control and Access-Control-Allow-Origin: * are set so it works in <img>, meta tags, and cross-origin fetches.
  • Errors: an invalid config returns 400 with 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 a POST JSON body for large ones), or use the in-browser SDK (which can load https: 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

idLabelLogicalExported (2×)
ogOpen Graph1200×6302400×1260
twitterX / Twitter1600×9003200×1800
linkedinLinkedIn1200×6272400×1254
facebookFacebook1200×6302400×1260
squareSquare1080×10802160×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 Display

In-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=eyJ0ZW1wbGF0ZSI6InNhYXMtZGFyayIsInByZXNldCI6ImVtYmVyIiwic2xvdHMiOnsidGl0bGUiOiJTaGlwIGZhc3RlciB3aXRoIFRhc2tsYW5lIiwic3VidGl0bGUiOiJPbmUgZmFzdCB3b3Jrc3BhY2UgZm9yIHlvdXIgd2hvbGUgcHJvZHVjdCB0ZWFtLiJ9fQ

Custom gradient + centered type

https://freeogimage.com/api/og?config=eyJ0ZW1wbGF0ZSI6ImdyYWRpZW50LW1lc2giLCJwbGF0Zm9ybSI6Im9nIiwic2xvdHMiOnsiYmFkZ2UiOiJOb3cgaW4gYmV0YSIsInRpdGxlIjoiSW50cm9kdWNpbmcgTm9ydGh3aW5kIEFuYWx5dGljcyJ9LCJnbG9iYWxzIjp7ImJhY2tncm91bmQiOnsia2luZCI6ImdyYWRpZW50IiwiZ3JhZGllbnQiOnsidHlwZSI6ImxpbmVhciIsImFuZ2xlIjoxMjAsInN0b3BzIjpbeyJjb2xvciI6IiMwZWE1ZTkiLCJwb3MiOjB9LHsiY29sb3IiOiIjN2MzYWVkIiwicG9zIjoxMDB9XX19LCJ0eXBvZ3JhcGh5Ijp7ImFsaWduIjoiY2VudGVyIn19fQ

Template 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, vignette

A 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 idtyperequiredmaxplaceholder
badgetext18Announcing
titlemultilineyes60Introducing Our Next Chapter
subtitletext90A faster, simpler way to create — now available to everyone.
datetext24June 2026
sourcetext30Northwind Newsroom
ctatext22Read the release

Bauhaus bauhaus

supports: background, typography, logo, platform, noise

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Form Follows Function
titletextyes48Composition in Primary
subtitlemultiline120Flat shapes, primary color, and type with nothing to hide.
tagtext30studio · est. 1919

Big Stat big-stat

supports: background, gradient, grid, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
eyebrowtext30Last 30 days
valuetextyes16$1.2M
deltatext16+18.4%
trendtext8up
labeltext50Monthly recurring revenue
contextmultiline110Steady growth across every plan tier compared with the prior period.

Blueprint blueprint

supports: background, grid, typography, logo, platform, noise

A 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 idtyperequiredmaxplaceholder
eyebrowtext30DWG-014 · REV A
titletextyes46Modular Shelving System
subtitlemultiline120Precision-engineered components with tight tolerances and clean assembly.
spectext90SCALE 1:20 | UNITS MM | SHEET 1/4

Neo-Brutalist brutalist

supports: background, typography, logo, platform

A 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 idtyperequiredmaxplaceholder
badgetext24Now Shipping
titletextyes60Build loud. Ship louder.
subtitlemultiline130No gradients. No noise. Just thick borders and hard shadows.
tagtext40freeogimage.com / studio

Chalkboard chalkboard

supports: background, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Est. Corner Cafe
titletextyes44Today's Special
subtitlemultiline120Slow-roasted house blend, baked fresh each morning.
footertext40Open daily · 7am - 6pm

Chrome Type chrome-type

supports: background, typography, logo, platform, noise, vignette

Y2K liquid-metal headline rendered as polished, reflective chrome on a dark glow.

Presets: silver (default), aqua, sunset

slot idtyperequiredmaxplaceholder
eyebrowtext30Now playing
titletextyes36Chrome Dreams
subtitlemultiline110A short reflective tagline

Claymorphism claymorphism

supports: background, typography, logo, platform

A 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 idtyperequiredmaxplaceholder
badgetext24New & shiny
titletextyes44Soft, squishy & friendly
subtitlemultiline120A tactile, toy-like clay look with layered puffy shadows.
tagtext30made with claymorphism

Comic Pop comic-pop

supports: background, typography, logo, platform

A 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 idtyperequiredmaxplaceholder
bursttext16POW!
titletextyes44Big news, bigger impact
subtitlemultiline110Drop a punchy line in the speech bubble.

Comparison comparison

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
titletextyes48Why teams switch to us
leftLabeltext22The old way
rightLabeltext22Acme
rowsmultiline200Realtime sync | no | yes Works offline | no | yes Unlimited seats | $$ | yes Email support | yes | yes
verdicttext40Acme wins on every front

Duotone duotone

supports: background, image, typography, logo, platform, vignette, noise

A 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 idtyperequiredmaxplaceholder
eyebrowtext30New release
titletextyes46Your bold headline
subtitlemultiline120A short supporting line for the poster.
photoimageUpload a photo to recolor as a duotone

Glass glass

supports: background, gradient, typography, logo, platform, noise

A frosted translucent card floating over a colorful gradient or mesh backdrop.

Presets: frosted-dark (default), frosted-light, neon-glass

slot idtyperequiredmaxplaceholder
badgetext24Announcing
titletextyes70Your big headline
subtitlemultiline130A short supporting line that explains the headline.

Glitch glitch

supports: background, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30System // Online
titletextyes44Signal Lost
subtitlemultiline120Reality is just a rendering error you haven't noticed yet.

Gradient Mesh gradient-mesh

supports: background, gradient, typography, logo, platform, noise, vignette

Soft multi-color mesh backgrounds with bold, centered type.

Presets: aurora (default), sunset, ocean, mono

slot idtyperequiredmaxplaceholder
badgetext28Now in beta
titletextyes70Your big headline
subtitlemultiline140A short supporting line

Holographic holographic

supports: background, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
badgetext24Limited
eyebrowtext30Collector Series
titletextyes44Holographic Edition
subtitlemultiline120A premium foil finish that catches the light from every angle.

Memphis memphis

supports: background, typography, logo, platform

A 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 idtyperequiredmaxplaceholder
badgetext24Hello there
titletextyes52Make it playful
subtitlemultiline120A bright, geometric look inspired by 80s design.

Pattern Grid pattern-grid

supports: background, grid, typography, logo, platform, noise

Structured, centered type laid over a dot, blueprint, or isometric grid pattern.

Presets: dotted (default), blueprint, iso-grid

slot idtyperequiredmaxplaceholder
titletextyes70Build on a solid grid
subtitlemultiline140A short supporting line that sits neatly under the headline

Photo Overlay photo-overlay

supports: background, gradient, image, typography, logo, platform, vignette, noise

A full-bleed background photo with a legibility scrim and a bold bottom-anchored headline, eyebrow, and subtitle.

Presets: bold (default), minimal, film

slot idtyperequiredmaxplaceholder
photoimageFull-bleed background photo
eyebrowtext28Travel
titlemultilineyes80A weekend in the Dolomites
subtitlemultiline120Where to stay, what to hike, and the best light.

Pixel Art pixel-art

supports: background, grid, typography, logo, platform

A 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 idtyperequiredmaxplaceholder
badgetext20LEVEL UP
titletextyes36New High Score
subtitlemultiline100Insert coin to continue. Your run starts now.
tagtext30PRESS START

Personal Brand portfolio

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
nametextyes28Jordan Avery
roletext36Product Designer & Developer
biomultiline96I craft calm interfaces and design systems for early-stage teams.
skillstext50UI Design · Prototyping · Front-end
handletext40jordanavery.studio · @jordanmakes
avatarimageSquare headshot (circular crop)

Psychedelic psychedelic

supports: background, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Far Out Presents
titletextyes40Cosmic Groove
subtitlemultiline110Tune in, turn up, and let the colors carry you all the way home.
footertext40Saturday Night · Doors at Eight

Retro Wave retro-wave

supports: background, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
eyebrowtext28Now Streaming
titletextyes48Midnight Drive
subtitlemultiline120Cruise the neon highway into the synthwave horizon.

Risograph risograph

supports: background, typography, logo, platform, noise

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Print run no. 04
titletextyes46Ink on Paper
subtitlemultiline120Two spot colors, slightly out of register, on warm uncoated stock.

Spotlight spotlight

supports: background, gradient, grid, typography, noise, vignette, logo, platform

A 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 idtyperequiredmaxplaceholder
eyebrowtext32INTRODUCING
titlemultilineyes70The fastest way to **ship**
subtitlemultiline120One bold idea, rendered entirely in your browser.

Sticker Bomb sticker-bomb

supports: background, typography, logo, platform

A 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 idtyperequiredmaxplaceholder
titletextyes40Sticker Pack!
subtitlemultiline100Peel, stick, and make it pop.
tagstext80New | Fun | Bright | Bold

Vaporwave vaporwave

supports: background, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30A E S T H E T I C
titletextyes44Dreaming in Pastels
subtitlemultiline120Soft gradients, glitching type, and a sun that never sets.

Watercolor watercolor

supports: background, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30From the studio
titletextyes48Soft Washes
subtitlemultiline120Pigment bleeding into damp paper, where every edge stays a little undecided.
footertext40An exhibition of quiet color

Product (44)

AI App ai-app

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext24AI
producttext30Nimbus AI
titletextyes46Your ideas, drafted in seconds
subtitlemultiline120An AI writing copilot that turns rough notes into polished copy you can ship.
prompttext90Summarize these meeting notes into 3 action items.
replymultiline130Sure! Here are 3 action items: 1) Send the recap, 2) Book the review, 3) Draft the budget.
ctatext24Start free
screenshotimageDrop a screenshot to replace the drawn chat

Alternative To alternative-to

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext40The open-source alternative to
producttextyes36Driftwork
categorytext44bloated all-in-one suites
subtitlemultiline120Everything your team actually uses, none of the bloat — and it runs anywhere.
pointsmultiline150No per-seat pricing Self-host in minutes Export your data anytime
ctatext24Make the switch

App Hero app-hero

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
appIconimageSquare app icon (a letter-mark is used if empty)
appNametextyes28Lumen
taglinetext60Your calmest way to track money
ratingtext324.9 · 12K ratings
ctatext16Get

App Onboarding app-onboarding

supports: background, gradient, image, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
badgetext24Onboarding
producttext30Driftly
titletextyes44Set up in under a minute
subtitlemultiline110Three quick steps from sign-up to your first win — no manuals, no clutter.
stepsmultiline90Create your space Invite your team You're all set
ctatext24Get started
screensimage-list3 itemsAdd up to 3 screenshots to fill the phones

App Paywall app-paywall

supports: background, gradient, image, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
iconimageSquare app icon (a crown mark is used if empty)
badgetext24Go Premium
producttext30Lumina
titletextyes40Unlock everything
subtitlemultiline100Every tool, no limits, no ads — one simple subscription that grows with you.
benefitsmultiline90Unlimited projects Ad-free experience Offline access Priority support
monthlytext22$9/mo
annualtext22$72/yr
featuredPlantext12annual
ctatext24Start free trial
screenshotimageDrop a screenshot to replace the drawn paywall inside the phone

App Privacy app-permissions

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare app icon (a letter-mark is used if empty)
badgetext24Privacy
producttext30Pocketgrove
titletextyes42Your data stays yours
subtitlemultiline110No accounts, no trackers. Every permission is off until you turn it on.
permissionsmultiline170Camera | ask Location | off Contacts | off Analytics | on
footnotetext60We never sell your data

App Reviews app-reviews

supports: background, gradient, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
iconimageSquare app icon (a letter-mark is used if empty)
producttext30Tideline
titletextyes40Loved by thousands
ratingtext84.9
ratingCounttext3012,400 ratings
reviewsmultiline2205 | Best in its category by far. | Maya R.

App Update app-update

supports: background, gradient, grid, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
iconimageSquare app icon (a letter-mark is used if empty)
badgetext24What’s New
producttext30Marigold
versiontext16v3.2
datetext30Updated Jun 20
titletextyes44Faster, smoother, smarter
subtitletext90A lighter rebuild with the fixes you asked for
changesmultiline140Boards load 3x faster New offline mode Dark theme polish

App Widget app-widget

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext24Home Screen Widgets
producttext30Glanceboard
titletextyes42Your day, at a glance
subtitlemultiline110Pin the numbers that matter to your home screen and stay in the loop without opening the app.
widgetTitletext24Today
widgetValuetext188,420 steps
widgetItemsmultiline60Focus · 2h 10m Moves · 6 of 8 Sleep · 7h 30m
ctatext24Add a widget
iconimageSquare app icon (a letter-mark is used if empty)

Book a Demo book-demo

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext24Live demo
producttext30Northwind
titletextyes44See it in action
subtitlemultiline100A guided walkthrough tailored to your team's workflow.
pointsmultiline210Live setup in minutes Automations that fit your stack Reporting your team will actually use
durationtext2230 min
hosttext30Maya Chen
roletext32Solutions Engineer
ctatext26Book a demo
avatarimageHost photo (an initials disc is used if empty)

Browser Extension browser-extension

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare extension icon (a puzzle glyph is drawn if empty)
badgetext24Browser Extension
producttext30TabTidy
titletextyes44Clean tabs, focused browsing
subtitlemultiline120Group, mute, and auto-close noisy tabs so your workspace stays calm.
ratingtext304.7 · 3,200 ratings
userstext2440,000+ users
ctatext28Add to browser

Bundle Kit bundle-kit

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext16BUNDLE
namemultilineyes48The Home Office Starter Kit
itemsimage-list4 itemsAdd up to 4 product images
itemNamesmultiline120Desk lamp Mug warmer Notebook
totaltext12$129
savingstext16Save $40
notetext363 items · ships free

Case Study case-study

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Case Study
titletextyes56How we tripled qualified pipeline in two quarters
summarymultiline140A focused rollout that turned scattered signups into a predictable revenue engine.
metricsmultiline120+212% | revenue growth -38% | churn rate 4.9x | pipeline ROI
clienttext40Results for Northgate Labs

Comparison Table comparison-table

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext28Compare
titletextyes42How we compare
subtitlemultiline90Everything you get out of the box — and what the others make you bolt on.
colstextyes60Ours · Tool A · Others
rowsmultilineyes320Realtime sync | yes | no | no Unlimited seats | yes | no | Add-on Offline mode | yes | no | yes SSO included | yes | $$ | no Audit logs | yes | no | no
detailtext50All plans · No credit card

Compliance compliance

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Enterprise-ready
titletextyes42Security you can trust
subtitlemultiline110Built for teams that move sensitive data — with controls reviewed by independent auditors.
badgesmultiline120SOC 2 Type II ISO 27001 GDPR HIPAA
pointsmultiline130Encryption at rest & in transit SSO & SAML Role-based access control
detailtext50Independently audited

Desktop App desktop-app

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare app icon (a letter-mark is used if empty)
badgetext24For Mac & Windows
producttext30Driftboard
titletextyes44Your whole workspace, finally native
subtitlemultiline120A fast, offline-first desktop app that keeps notes, tasks, and files in one quiet place.
featuresmultiline120Instant local search Keyboard-first commands Works fully offline
ctatext28Download for desktop
screenshotimageDrop a screenshot to show inside the window

Device Frame device-frame

supports: background, gradient, image, typography, logo, platform, vignette

Embed a screenshot inside a browser or phone frame with depth, a title, and a caption.

Presets: browser-dark (default), browser-light, phone, floating

slot idtyperequiredmaxplaceholder
titletextyes60Introducing the new dashboard
screenshotimageUpload a screenshot
captionmultiline80A short supporting line

Feature Grid feature-grid

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Features
titletextyes44Everything you need to ship faster
subtitlemultiline110One workspace for the whole team — no setup, no glue code, no surprises.
featuresmultiline220Instant 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.
ctatext24Start building free

Featured App featured-app

supports: background, gradient, image, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
iconimageSquare app icon (a letter-mark is used if empty)
badgetext28App of the Day
producttext30Driftwell
titletextyes44The calm to-do app for busy minds
blurbmultiline150A beautifully restrained planner that turns your overwhelming day into three things that actually matter. Our pick this week.
tagstext60Productivity · Free · iOS
ratingtext304.9 · 8K ratings

Integrations Grid integration-grid

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
badgetext24Integrations
titletextyes44Connects with your stack
subtitlemultiline110Plug in the tools you already use and keep everything in sync automatically.
namesmultiline160Flowdeck Pulsegrid Ledgerly Boardmark Streamcore Tasklane Vaultly Signal
counttext28100+ integrations
ctatext24Browse all
logosimage-list8 itemsAdd logo

Launch Day launch-day

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
badgetext24Live now
producttext30Beacon
titletextyes46We're live!
subtitlemultiline120The fastest way to ship your ideas — now open to everyone.
detailtext50Now available everywhere
ctatext24Try it free

Marketplace Listing marketplace-listing

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
titlemultilineyes56Vintage Teak Lounge Chair
pricetext12$240
conditiontext24Used · Like New
locationtext36Portland, OR · 2h ago
sellertext24mid_century_finds
ratingtext164.9 (128)
avatarimageSeller avatar
photoimageItem photo

Metrics metrics

supports: background, gradient, typography, logo, noise, vignette, platform

A 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 idtyperequiredmaxplaceholder
eyebrowtext32Launch recap
headlinemultilineyes70Our launch day by the numbers
subtitlemultiline110Real-time results from the first 24 hours on the platform.
statsmultilineyes24012.4k | Upvotes | +18% #1 | Product of the Day | 3.2k | New signups | +42% 98% | Satisfaction | +5%
footnotetext48Updated hourly · first 24h

Mobile App mobile-app

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
badgetext24New release
producttext30Tideline
titletextyes46Plan your week in a single tap
subtitlemultiline120A fast, focused planner that turns your scattered to-dos into one calm daily flow.
featuresmultiline120Smart daily agenda Offline-first sync Gentle focus reminders
ratingtext304.8 · 6K ratings
ctatext24Get the app
screenshotimageDrop a screenshot to show inside the phone

NPS Score nps

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Customer satisfaction
titletextyes40Customers love us
subtitlemultiline90Our Net Promoter Score climbed nine points this quarter.
scoretextyes872
promoterstext678
passivestext616
detractorstext66
sampletext36from 1,240 responses

Onboarding onboarding-card

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext22Getting started
titlemultilineyes48Set Up Your Workspace in Minutes
subtitletext64Three quick steps and you're ready to go.
stepsmultiline120Create your account Invite your team Connect your tools
ctatext20Get started

Persona persona

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext18AI
titlemultilineyes70Marketing that runs itself while you build
subtitlemultiline120Turn your idea into a launch-ready campaign in minutes, not weeks.
avatarimageSquare headshot (circular crop)
nametext28Maya Chen
roletext32Founder

Pricing pricing

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext22Most popular
plantextyes24Pro
pricetextyes12$29
periodtext16per month
featuresmultiline160Unlimited projects Priority support Custom domains Advanced analytics
ctatext24Start free trial

Pricing Table pricing-table

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Pricing
titletextyes40Simple, fair pricing
subtitlemultiline80Start free, upgrade when your team grows. No hidden fees.
plansmultilineyes180Starter | $0 | /mo | ynnn Team | $24 | /mo | yyyn Scale | $79 | /mo | yyyy
featuredtext20Team
featuresmultiline160Unlimited projects Priority support Usage analytics SSO & audit logs
ctatext24Start free trial

Product Card product-card

supports: background, gradient, image, typography, logo, platform, vignette, noise

An 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 idtyperequiredmaxplaceholder
brandtext24NORTHWIND
namemultilineyes60Aero Running Jacket
pricetext16$128
notetext32Free shipping over $75
badgetext16New
photoimageProduct photo

Product Deal product-deal

supports: background, gradient, image, typography, logo, platform, vignette, noise

A 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 idtyperequiredmaxplaceholder
badgetext16DEAL
brandtext24NORTHWIND
namemultilineyes56Trailridge 30L Backpack
wasPricetext12$199
nowPricetext12$129
discounttext1235% OFF
urgencytext32Ends Sunday · while stocks last
photoimageProduct photo

Product Launch product-launch

supports: background, gradient, image, typography, logo, platform, vignette

A launch announcement with a 'New' badge, bold title, subtitle, CTA chip, and an optional product image.

Presets: spotlight (default), split, centered-hero

slot idtyperequiredmaxplaceholder
badgetext18New
titletextyes70Meet your next favorite tool
subtitlemultiline130A short line about what makes it great
ctatext24Get started free
productImageimage

Product Review product-review

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext18BESTSELLER
titlemultilineyes48Premium Wireless Headphones
nowPricetext12$199
wasPricetext12$269
ratingtext244.8/5 (256 reviews)
featuresmultiline140Active Noise Cancellation 30-hour Battery Life Premium Sound Quality
photoimageProduct photo
logoimageBrand logo
brandtext20NORTHWIND

Push Notification push-notification

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare app icon (a letter-mark is used if empty)
eyebrowtext30Re-engage your users
appNametext24Tideline
notifTitletextyes50Your weekly plan is ready
notifBodymultiline130Tap to see the 3 tasks we lined up for you — it takes about two minutes.
timetext12now
captiontext70Bring people back with a tap-worthy push.

PWA Install pwa-install

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext28Install the app
producttext30Notebrook
titletextyes44Add to your home screen
subtitlemultiline120Pin the web app to your home screen and open it like any other — no download, no app store.
featuresmultiline90Works offline No app store Instant updates
urltext34notebrook.app
ctatext28Install
iconimageSquare app icon (a letter-mark is used if empty)

Referral referral

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext24Refer a friend
producttext30Lumen
titletextyes44Give $20, get $20
subtitlemultiline110Invite a friend to Lumen. When they subscribe, you both get a credit on your next bill.
givetext16$20
gettext16$20
codetext22FRIEND20
stepsmultiline130Share your link with a friend They sign up and subscribe You both get the reward
ctatext26Share your link

Roadmap roadmap

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Product Roadmap
titletextyes44What we're building next
subtitletext80A look at where the product is headed this quarter.
nowmultiline110Realtime collaboration Faster exports Dark mode polish
nextmultiline110Mobile app beta Team workspaces Version history
latermultiline110Public API Offline mode Plugin marketplace

ROI Result roi-calculator

supports: background, gradient, grid, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
eyebrowtext28ROI Calculator
titletextyes40Teams save big
subtitletext90See what switching could return for a team your size.
resulttextyes16$48,000
resultLabeltext40saved per year
inputsmultiline140Team size | 25 Hours saved/wk | 6 Hourly rate | $50
deltatext16+312% ROI
ctatext24Calculate yours

SaaS saas

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
producttext28Tasklane
titlemultilineyes80Plan, Track, and Ship Faster
subtitlemultiline130One fast workspace for your whole product team.
featuresmultiline120Realtime sync Keyboard-first Git integration
prooftext48Trusted by 2,000+ teams

SaaS Dark saas-dark

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
badgetext12New
producttext20Lumenstack
titlemultilineyes52Analytics Your Whole Team Trusts
subtitletext70Realtime dashboards with zero setup.
featuresmultiline120Live metrics Team workspaces Audit-ready logs
screenshotimageUpload a screenshot
kpiValue1text848.2k
kpiLabel1text18Active users
kpiValue2text8+24%
kpiLabel2text18Week over week
ctatext20Start free

Sale sale

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext22Limited time
headlinetextyes2450% OFF
subtitlemultiline110Everything in the summer collection — this weekend only.
codetext18SUMMER50
ctatext22Shop the sale

Social Proof social-proof

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext22Trusted by teams
logoimageLogo
headlinemultilineyes72The toolkit teams switch to and stay on
subtextmultiline130One workspace for docs, tasks, and reviews. Set up in minutes, loved for years.
ratingtext55.0
ratingNotetext34from 1,200+ reviews
featuresmultiline120Realtime collaboration Unlimited projects Works offline
accenttext20Free 14-day trial

Trial Ending trial-ending

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
badgetext24Trial ending
producttext30Loomflow
daysLefttextyes63
titletextyes42Your trial ends soon
subtitlemultiline110Keep your projects, history, and team in sync — upgrade before access pauses.
perksmultiline90Unlimited projects Full version history Priority support
ctatext26Upgrade now
detailtext5050% off your first month

Waitlist waitlist

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
badgetext24Coming soon
producttext30Driftwave
titletextyes46Be first in line for early access
subtitlemultiline120Private beta opening soon. Reserve your spot and we'll email you an invite.
emailtext40you@email.com
ctatext24Join the waitlist
avatarsimage-list4 itemsAdd face
counttext302,480 on the list

Events (6)

Award award

supports: background, gradient, image, typography, logo, platform, vignette, noise

An 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 idtyperequiredmaxplaceholder
eyebrowtext26Winner
awardtextyes44Designer of the Year
nametext40Ada Brightwater
yeartext82026
notetext50For outstanding craft and leadership
photoimage

Conference conference

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext302026 Summit
titletextyes46Frontier Dev Summit
datetext40May 14-16, 2026
locationtext40The Atrium, Portland
taglinemultiline120Three days of talks, workshops, and the people building what's next.
ctatext28Register

Festival Lineup festival-lineup

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
titletextyes40Solstice Sound
headlinersmultiline120Velvet Mirage Neon Cathedral The Paper Tigers
supportmultiline200Midnight Caravan · Glass Harbour · Lantern Parade · Saltwater Choir Dune Sparrow · The Quiet Hours · Copper Lions · Vesper Bloom
datestext40Aug 15–17, 2026
venuetext40Harbor Greens · Port Marlow

Meetup meetup

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
grouptext40Riverside Makers Collective
titletextyes48Hands-On Soldering Night
daytext612
monthtext8JUL
venuetext50The Old Mill Workshop, Studio 3
detailtext506:30 PM · Free

Save the Date save-the-date

supports: background, gradient, typography, logo, platform, vignette, noise

An 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 idtyperequiredmaxplaceholder
eyebrowtext30Save the Date
namestextyes44Ava & Liam
datetext4009 · 14 · 2026
locationtext50The Hillcrest Gardens · Meadowbrook
notetext50Formal invitation to follow

Speaker Card speaker-card

supports: background, gradient, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
eyebrowtext30Featured Speaker
nametextyes30Priya Anand
roletext50Head of Design · Northwind
talktext64Designing systems that scale with your team
eventtext40DevSummit ’26
whentext30Jul 18 · 2:00 PM
photoimage

Education (7)

Certificate certificate

supports: background, gradient, typography, logo, platform, vignette, noise

A 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 idtyperequiredmaxplaceholder
orgtext40Northwind Learning Institute
titletextyes36Certificate of Completion
recipienttextyes40Avery Calloway
detailmultiline120Foundations of Data Analysis · March 2026
signertext40Jane Rivera · Director

Cohort Course cohort

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
kickertext26Cohort-based course
titlemultilineyes64Product Design Intensive
instructortext40Led by Dana Brooks
startLabeltext24Sep 8, 2026
durationtext306 weeks · Live
seatstext3012 of 40 seats left
ctatext22Apply now

Course course

supports: background, gradient, grid, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
kickertext28Online course
titlemultilineyes70Build a Design System in Figma
instructortext40with Dana Lee
metatext6012 lessons · 4h 30m · Beginner
ctatext24Enroll free

Curriculum curriculum

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
kickertext26Course syllabus
titlemultilineyes50Frontend Architecture
metatext488 modules · 6h 20m · Beginner
modulesmultiline220Foundations | 42m Component patterns | 1h 05m State & data flow | 58m
ctatext22View curriculum

Video Lesson lesson

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
seriestext40Design Systems · Lesson 4
titlemultilineyes56Tokens, Themes, and Dark Mode
metatext4012 lessons · 4h 30m
durationtext1014:32
thumbimageVideo thumbnail

Webinar webinar

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext18Live webinar
titlemultilineyes70Scaling Design Systems Without the Chaos
presentertext36Maya Chen
roletext40Head of Design, Northwind
datetimetext40Thu, Jul 10 · 11:00 AM PT
ctatext22Save my seat
avatarimageSquare headshot

Workshop workshop

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Live Workshop
titletextyes44Designing with Real Data
whentext44Sat, Jul 12 · 10 AM
formattext30Online · 2 hrs
learnmultiline120Map messy data to clear layouts Build reusable design tokens Ship a polished prototype
instructortext40with Dr. Lia Crane
pricetext20Free
ctatext24Save my seat
photoimageUpload a headshot

Finance (7)

Token Price crypto-token

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
logoimageUpload logo
nametextyes24Zelphor
tickertext8ZPH
pricetextyes12$2.418
changetext14+12.4%
statstext60Mkt Cap $1.2B · Vol $84M · Rank #42
notetext2024h · USD

Fintech App fintech-app

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
producttext20Plume
titlemultilineyes42Banking That Grows With You
subtitletext56No fees, no minimums — just smarter money.
featuresmultiline120Instant transfers Get paid 2 days early 2.5% cashback
cardLabeltext20Plume Card
holdertext24A. MORGAN
ctatext22Get the app

Funding Round funding-round

supports: background, gradient, grid, typography, logo, platform, noise, vignette, image

A 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 idtyperequiredmaxplaceholder
badgetext14Series A
eyebrowtext18We raised
amounttextyes10$12M
companytext22Lumenstack
logoimage
investorstext64Led by Vantage Capital, with Meadow Ventures
taglinemultilineyes64Building the fastest analytics stack for modern teams.
ctatext20We are hiring

Invoice invoice

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
businesstextyes24Brightloom Studio
invoiceNotext16INV-0142
issuedtext22Issued Jun 3
duetext22Due Jun 17
billTotext30Bill to: Northwind Co.
itemsmultiline160Brand identity system | $1,400 Landing page design | $820 Two revision rounds | $260 Asset handoff | $0
totaltext14$2,480.00
statustext12PAID

Market Update market-update

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext20Market update
titlemultilineyes56Markets Close Higher on Tech Rally
datetext30Jun 19 · 4:00 PM ET
moversmultiline240Helio Labs | $182.40 | +3.2% Vantage Group | $54.10 | -1.1% Meadow Energy | $77.85 | +0.8% Orbit Mobility | $12.66 | +5.4%
footertext44Closing prices · illustrative sample data

Savings Goal savings-goal

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Savings Goal
titletextyes36Emergency Fund
savedtext14$8,400
goaltext14$10,000
percenttext484
notetext54On track for December
ctatext24Keep saving

Stock Ticker stock-ticker

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
logoimageUpload logo
symboltext10NVTX
companytextyes36Novatix Semiconductor
pricetextyes14$184.20
changetext14+4.8%
changeAbstext14+$8.40
notetext44After hours · Jun 21

Real Estate (6)

Agent Profile agent-profile

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
nametextyes30Camille Hartwell
titletext40Broker · Lic #00482
brokeragetext40Meridian Property Group
statsmultiline120$48M | Sold ’25 120+ | Homes closed 4.9★ | Client rating
taglinetext70Helping families find home across the valley since 2012.
contacttext44(555) 010-2840
ctatext24Book a tour
photoimage

Just Sold just-sold

supports: background, gradient, image, typography, logo, platform, vignette, noise

A 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 idtyperequiredmaxplaceholder
statustext16JUST SOLD
addresstextyes50248 Maple Crest Ave, Lakewood
pricetext16$845,000
specstext504 bd · 3 ba · 2,400 sqft
agenttext40Jordan Lee · Realtor
photoimageAdd a property photo

Neighborhood Guide neighborhood-guide

supports: background, gradient, image, typography, logo, platform, vignette, noise

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Living in
nametextyes40Harborline Heights
summarymultiline130Tree-lined streets, a walkable main strip, and weekend markets a short stroll from the water.
statsmultiline12092 | Walk Score $540k | Median home 18 min | To downtown
detailtext50Guided by neighborhood specialists
photoimage

Open House open-house

supports: background, gradient, image, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
badgetext16Open House
titlemultilineyes42Modern Hillside Retreat
datetimetext34Sat, Jul 12 · 1–4 PM
addresstext4817 Canyon View Dr, Boulder
hosttext40Hosted by Erin Park
detailtext40Refreshments served · All welcome
photoimageProperty photo

Property Listing property-listing

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
statustext16For Sale
pricetext14$845,000
titlemultilineyes40Sunlit 3-Bed Craftsman
addresstext48248 Maple Crest Ave, Lakewood
specstext403 Beds · 2 Baths · 1,840 sqft
agenttext48Listed by Erin Park · Crestline Realty
photoimageProperty photo

Rental Listing rental-listing

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
statustext20For Rent
pricetext16$2,400/mo
titletextyes40Bright 2-Bed Loft
addresstext50118 Willow Bend St, Riverside
specstext402 Beds · 1 Bath · 980 sqft
detailtext50Available Aug 1 · Pets OK
photoimageUpload a property photo

Jobs (5)

Open Roles hiring-roles

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30We’re Hiring
titletextyes44Join the team
rolesmultiline170Senior Product Designer | Remote Backend Engineer | Berlin · Full-time Growth Marketer | Hybrid
notetext50Remote-friendly · Full-time
ctatext24View openings
logoimage

Job Posting job-posting

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
logoimageSquare icon/logo (a letter-mark is used if empty)
companytext24Northwind Labs
rolemultilineyes44Senior Frontend Engineer
metatext48Remote · Full-time · $140k–$180k
pointsmultiline120React + TypeScript 4+ years experience Equity + full benefits
ctatext20Apply now

New Role new-role

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext36Excited to announce
nametext30Ada Brightwater
roletextyes44Senior Product Designer
companytext36Brightline Studio
detailtext60Starting August · Remote
avatarimage

Open to Work open-to-work

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext24OPEN TO WORK
nametextyes30Jordan Avery
roletext40Senior Frontend Engineer
skillstext120React · TypeScript · Design Systems · Accessibility
detailtext50Remote · Full-time · Available now
avatarimage

We're Hiring were-hiring

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext18We're hiring
titlemultilineyes40Come Build With Us
rolesmultiline120Product Designer Backend Engineer Growth Lead Support Specialist
perkstext56Remote-first · Equity · Unlimited PTO
companytext24Brightloom
ctatext22See open roles

Food (5)

Daily Special daily-special

supports: background, gradient, image, typography, logo, platform, vignette, noise

A 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 idtyperequiredmaxplaceholder
eyebrowtext28Today's Special
dishtextyes44Charred Heirloom Tomato Tart
descmultiline130Blistered tomatoes over whipped ricotta on flaky pastry, with basil oil and toasted pine nuts.
pricetext14$18
detailtext40Available till 9pm
photoimageAdd a photo of the dish

Happy Hour happy-hour

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
venuetext36The Copper Lantern
titletextyes36Happy Hour
timestext44Mon–Fri · 4–6 PM
specialsmultiline150House Margarita | $7 Draft Pints | $5 Truffle Fries | $6
notetext50Dine-in only · 21+

Restaurant Menu menu

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
kickertext22Dinner Menu
nametextyes28Olive & Thyme
itemsmultiline220Charred Octopus | 18 Wild Mushroom Risotto | 24 Seared Branzino | 29
notetext40Seasonal · Locally sourced

Recipe recipe

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
kickertext24Recipe
titlemultilineyes60One-Pan Lemon Garlic Pasta
metatext5025 min · Serves 4 · Easy
ingredientsmultiline160Spaghetti Garlic Lemon Parmesan Olive oil Parsley
sourcetext40from The Weeknight Kitchen

Restaurant Hero restaurant-hero

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
namemultilineyes22Olive & Thyme
cuisinetext44Mediterranean Kitchen & Bar
ratingtext284.8 · 1,200+ reviews
detailtext40Open 5–11 PM · Downtown
ctatext20Reserve a table
photoimageFood photo

Travel (6)

City Guide city-guide

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30City Guide
citytextyes30Porthaven
subtitletext5048 hours in the old town
spotsmultiline150Harbor Steps | sunset views The Tin Market | street food
footertext40Best in spring

Destination Postcard destination-postcard

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext18Greetings from
titletextyes22Marisol Bay
subtitletext36The Southern Coast
coordinatestext2641.2 N / 9.1 E
photoimage

Flight Deal flight-deal

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
fromtext18New York (JFK)
totextyes18Lisbon (LIS)
pricetextyes14$389
labeltext30Round trip · Nonstop
datestext40Apr–May 2026
photoimageAdd a destination photo

Hotel Deal hotel-deal

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext22LIMITED OFFER
nametextyes40The Azure Cove Resort
locationtext40Marisol Bay, Southern Coast
ratingtext104.8
perksmultiline90Free breakfast Oceanfront pool Late checkout
pricetext14$189
unittext18/ night
ctatext24Book now
photoimageUpload a hotel or room photo (optional)

Trip Itinerary itinerary

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
kickertext18Itinerary
titlemultilineyes407 Days in the Highlands
metatext44Apr 2 - 9 · 2 travelers · 6 stops
daysmultiline160Arrive + old town wander Coastal cliffs day trip Vineyards + sunset dinner Markets + departure
ctatext20Plan your trip

Travel Deal travel-deal

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext16Flight Deal
origintextyes18Harborview
destinationtextyes18Porto Verde
datestext30Mar 14 - Mar 22
pricetext10$389
priceNotetext24per person, round trip
detailtext30Nonstop · 11h 20m
ctatext18Book now

Fashion & Beauty (5)

Beauty Feature beauty-feature

supports: background, gradient, typography, logo, platform, vignette

An 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 idtyperequiredmaxplaceholder
brandtext30Maison Lune
titletextyes40Velvet Glow Serum
taglinemultiline110A weightless daily serum that leaves skin dewy, calm, and luminous.
detailtext40Vegan · Cruelty-free · 30ml
pricetext16$48
imageimageUpload a product photo (optional)

Lookbook lookbook

supports: background, image, typography, logo, platform, vignette, noise

A 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 idtyperequiredmaxplaceholder
brandtext30Atelier Vireo
titletextyes40After Hours
seasontext30FALL ’26
subtitletext60A study in shadow and tailored silhouettes
photoimage

New Arrivals new-arrival

supports: background, gradient, typography, logo, platform, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext24NEW IN
titletextyes36Autumn Arrivals
subtitletext56Soft tailoring and earthy tones for the new season
priceFromtext22From $48
ctatext24Shop now
productsimage-list3 itemsAdd product photo

Outfit of the Day outfit

supports: background, image, typography, logo, platform, vignette, noise

An 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 idtyperequiredmaxplaceholder
brandtext30Atelier Ver/Noir
titletextyes36Look 03 · Autumn
itemsmultiline160Wool overcoat Silk knit top Tailored trousers Suede boots
pricetext16Total · $420
detailtext40Styled for cool city mornings
photoimage

Product Drop product-drop

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext20DROP
titletextyes40Volt Runner 88
dropDatetext30Fri, Jun 27 · 10AM
pricetext16$180
tagtext30LIMITED EDITION
imageimage

Health & Fitness (7)

Fitness App fitness-app

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
badgetext12Health
producttext18Pulse
titlemultilineyes44Every Move Counts, Daily
subtitletext64Train, recover, and sleep in one app.
statsmultiline9024 | Workouts 18 | Day streak 7h | Avg sleep
ringsmultiline1682 64 47
ringStatsmultiline608,420 | Steps 62 min | Active
ctatext18Get the app

Meditation Session meditation-session

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Daily Calm
titletextyes40Evening Wind-Down
durationtext1412 min
leveltext20Beginner
focustext56Breathe · Unwind · Sleep
guidetext40with Maya R.
coverimage

Nutrition Facts nutrition-facts

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
producttextyes22Cold-Pressed Greens
taglinetext52Organic juice, nothing added.
highlightsmultiline60Vegan Gluten-free No added sugar
servingtext281 bottle (350 ml)
caloriestext8120
nutrientsmultiline150Total 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%
footnotetext60Percent daily values based on a 2,000 calorie diet.

Progress Transformation progress-card

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext3012-Week Transformation
titletextyes40Stronger every week
stattext16-18 lbs
percenttext475
detailtext50Down 4 sizes and feeling unstoppable.
beforeAfterimage-list2 itemsAdd photo

Wellness App wellness-app

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
badgetext24New season
producttext30Stillpond
titletextyes44Find your calm, one breath at a time
subtitlemultiline120Guided breathing, gentle sleep stories, and daily check-ins to ease a busy mind.
featuresmultiline1205-minute breathing resets Sleep stories for deep rest Mood check-ins each morning
ctatext24Get the app
screenshotimageDrop a screenshot to show inside the phone

Wellness Challenge wellness-challenge

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Challenge
titletextyes4030-Day Move
daystext630
taglinetext60One small habit, every single day.
perksmultiline110Daily guided sessions Progress streak tracker Supportive group chat Finisher badge
progresstext440
ctatext24Join free

Workout Class workout-class

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
kickertext22HIIT · Studio 2
titlemultilineyes26Sunrise Burn
instructortext28with Coach Rae
statsmultiline9045 min | Duration High | Intensity 520 | Calories
scheduletext34Mon + Wed · 6:30 AM
ctatext20Reserve a spot
avatarimage

Music (6)

Album Release album-release

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext14Out Now
artisttextyes24Velvet Harbor
titlemultilineyes32Midnight Tides
metatext42Indie Pop · 12 tracks · 41 min
ctatext18Listen now
coverimage

Concert Poster concert-poster

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
presentertext36Live at The Hollow presents
artisttextyes34Marble Coast
supporttext56with Night Ferns · Pale Sun
datetext30FRI · AUG 14
venuetext40The Hollow Ballroom
detailtext44Doors 7PM · 18+ · $35
photoimage

Now Playing now-playing

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
tracktextyes30Neon Rivers
artisttextyes24Velvet Harbor
albumtext26Midnight Tides
elapsedtext61:24
totaltext63:47
upNexttext30Up next: Coastal Lights
coverimage

Playlist playlist

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
labeltext30Playlist
titletextyes40Late Night Drive
subtitletext60Curated by Midnight Radio
tracksmultiline200Neon Tide — Violet Hours Slow Static — Paper Club Afterglow — Marlowe Drift
metatext4024 songs · 1h 32m
coverimageUpload a cover (square works best)

Single Release single-release

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
labeltext24NEW SINGLE
tracktextyes36Neon Undertow
artisttext36Halcyon Drift
statustext24OUT NOW
servicestext80Streaming · Radio · Download
ctatext24Listen
coverimage

Tour Dates tour-dates

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext22World Tour 2026
titlemultilineyes26Velvet Harbor
datesmultiline200MAR 14 | Harborview, Tidal Hall | Tickets
ctatext18Get tickets

Video & Creator (6)

Breaking News breaking-news

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
kickertext26BREAKING NEWS
headlinemultilineyes110Coastal council approves overnight harbor rebuild after marathon vote
tickertext90Live updates · Crews mobilize at first light · Officials promise full briefing at noon
sourcetext30The Daily Ledger
timetext26LIVE · 6:42 PM
photoimage

Creator Milestone creator-milestone

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext14Milestone
numbertextyes8100K
unittext18Subscribers
titlemultilineyes40Thank You for the Support
handletext22@thedailybuild
sublinetext50Couldn’t have done it without you.
avatarimage

Going Live going-live

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext10LIVE
eyebrowtext18Going Live
titlemultilineyes40Building a Synth From Scratch
handletext22@nimbusplays
viewerstext181.2K watching
scheduletext30Today · 8:00 PM ET
ctatext18Watch now
avatarimage

Podcast Episode podcast-episode

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
showtext40The Signal Room
episodetext16EP. 042
titlemultilineyes60Designing for the long quiet
guesttext40with Dana Okafor
durationtext1648 min
coverimageSquare cover image (optional)

Press Release press-release

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
tagtext30FOR IMMEDIATE RELEASE
headlinemultilineyes110Northwind Labs unveils its open carbon-tracking platform
subheadmultiline130The new toolkit lets any team measure and publish emissions data with a single, auditable workflow.
datelinetext54SAN MERIDIAN — June 21, 2026
orgtext36Northwind Labs
contacttext50press@northwind.example
logoimage

Video Thumbnail video-thumbnail

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
channelIconimageSquare icon/logo (a letter-mark is used if empty)
titlemultilineyes38I Tried This For 30 Days
highlighttext1630 Days
badgetext8NEW
channeltext22The Daily Build
durationtext812:04
photoimage

Gaming (6)

Esports Match-Up esports-matchup

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
tournamenttext40Nova Invitational · Grand Final
teamAtextyes22Crimson Vanguard
teamBtextyes22Azure Syndicate
scoreAtext42
scoreBtext41
statustext16LIVE
detailtext48Map 4 · 7:30 PM ET
logoAimageTeam A logo
logoBimageTeam B logo

Game Release game-release

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext16OUT NOW
titlemultilineyes48Echoes of the Verge
taglinemultiline90A co-op survival roguelite set on a dying frontier.
genresmultiline80Roguelite Survival Co-op
platformstext40PC · Console · Cloud
datetext28Available March 2026
artimageKey art

Game Server game-server

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
nametextyes32Ironhold Survival
statustext16Online
addresstext40play.ironhold.example:30420
playerstext1237 / 64
modetext24Survival · PvE
tagsmultiline120Modded Whitelist Weekly resets
bannerimageBanner art

Leaderboard leaderboard

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext20Season 4 · Ranked
titlemultilineyes26Top Players
entriesmultiline180NovaStrike | 18,420 Vortex | 17,905 EmberWolf | 16,330
notetext36Updated hourly · Top 100 qualify

Patch Notes patch-notes

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
gametext36Starfall Drift
versiontext16v2.4.0
titletextyes44Season 4 Update
addedmultiline96New co-op horde mode Three maps in the Outer Rim Daily contracts and rewards
fixedmultiline96Fixed rare crash on map load Matchmaking now far faster UI scaling on ultrawide
datetext30June 20, 2026

Tournament Bracket tournament-bracket

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext22Grand Finals
titlemultilineyes24Bracket Stage
teamsmultiline120Nova | 2 Vortex | 1 Ember | 0 Quill | 2
championtext16Quill
prizetext24$50,000 Prize Pool

Nonprofit (5)

Cause Awareness cause-awareness

supports: background, gradient, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
eyebrowtext30Ocean Month
titlemultilineyes60Every tide carries our choices
stattext308M tons of plastic / yr
hashtagtext30#TurnTheTide
ctatext30Pledge today

Fundraiser fundraiser

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
orgtext40Riverbend Community Fund
titletextyes46Build the new learning garden
raisedtext16$48,200
goaltext16$75,000
percenttext464
supporterstext301,204 donors
ctatext24Donate

Gala Invite gala-invite

supports: background, gradient, typography, logo, platform, vignette, noise

An 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 idtyperequiredmaxplaceholder
orgtext36The Lantern Hope Foundation
titletextyes40Annual Benefit Gala
datetimetext44Saturday, October 18 · 7:00 PM
venuetext50The Marble Hall · Rivermoor
detailtext50Black tie · Tickets $150
ctatext24Reserve a table

Impact Report impact-report

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
orgtext36Riverbend Community Trust
titletextyes44Our 2026 Impact
summarymultiline130A year of meals shared, gardens grown, and neighbors lifted — here is what your support made possible.
metricsmultiline1201.2M | meals served 48 | communities reached 92% | to programs
detailtext50Read the full report

Volunteer Call volunteer-call

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Volunteers Wanted
titletextyes48Lend a hand at the community garden
whentext40Saturday, June 21 · 9am – 1pm
wheretext40Riverbend Park · East Lawn
detailmultiline120Planting, painting & welcome crew. Snacks, gloves and good company provided.
ctatext24Sign up

Seasonal & Holiday (4)

Birthday birthday

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Happy Birthday
nametextyes30Jordan
agetext630
photoimageRound photo of the birthday person
messagemultiline130Wishing you the happiest of days and a year full of good things.
signofftext40— From all of us

Countdown countdown

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Launching in
titletextyes44The Big Drop
daystext412
hourstext408
minutestext445
datetext40Saturday, March 14 · 9:00 AM PT
ctatext24Get notified

Holiday Greeting holiday-greeting

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30With gratitude
titletextyes40Season’s Greetings
messagemultiline140Wishing you warmth, rest, and bright days ahead through the season and into the new year.
signofftext40— The Team

Seasonal Sale seasonal-sale

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Winter Sale
headlinetextyes40Everything must go
discounttext2050% OFF
codetext20FROST50
datestext40Now through December 31
ctatext24Shop now

Editorial (18)

Art Deco art-deco

supports: background, typography, logo, platform, vignette, noise

A 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 idtyperequiredmaxplaceholder
eyebrowtext30An Evening Of
titletextyes46The Gilded Hour
subtitlemultiline120Music, dancing, and late-night glamour beneath the chandeliers.
footertext50Saturday · Nine O'Clock · Black Tie

Article Card article-card

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
categorytext24Engineering
titlemultilineyes90How we cut our build times in half
excerptmultiline140A short summary that pulls readers in.
authortext40Jordan Lee
metatext405 min read
avatarimageAuthor photo

Checklist checklist

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A '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 idtyperequiredmaxplaceholder
eyebrowtext28Checklist
titletextyes46The pre-launch checklist
subtitletext90Everything to tick off before you ship to the public.
itemsmultiline280done | Write the launch post todo | Set up analytics
progresstext244 of 6 done
sourcetext36yourblog.com

Constructivist constructivist

supports: background, typography, logo, platform, noise

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Manifesto No. 7
titlemultilineyes80Build the Future With Bold Lines
subtitlemultiline110A call to the makers, the builders, and the restless minds of tomorrow.
footertext50The Workshop · Issue One

Editorial editorial

supports: background, image, typography, logo, platform, vignette

A magazine split layout with a kicker, big headline and byline beside a featured photo.

Presets: magazine (default), newsprint, long-read

slot idtyperequiredmaxplaceholder
kickertext30Section / category
headlinetextyes90Your big headline goes here
bylinetext48By Author Name · Publication
photoimageFeatured image

FAQ faq

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30FAQ
titletextyes44Good to know
itemsmultiline300How 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.
footertext40More answers in the help center

How-To how-to

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
kickertext24Tutorial
titlemultilineyes64Deploy a Next.js app in 4 steps
stepsmultiline200Install the CLI Connect your repo Set your env vars Click deploy
footertext40freeogimage.com/guides

Lead Magnet lead-magnet

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext28Free Guide
kickertext30Ebook
titletextyes50The Ship-Faster Playbook
subtitlemultiline120A practical field guide for small teams shipping their first product.
bulletsmultiline150Scope a launch in a week Write specs people read Measure what matters
ctatext24Download free
coverimageCover image (a drawn cover is used if empty)

Listicle listicle

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A "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 idtyperequiredmaxplaceholder
eyebrowtext30Roundup
titletextyes5010 Best Tools for Indie Devs
subtitletext80Hand-picked picks that ship faster and cost less
itemsmultiline200A linter that fixes itself The zero-config bundler Type-safe form builder
sourcetext40yourblog.com

Magazine Cover magazine-cover

supports: background, image, typography, logo, platform, vignette, noise

A 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 idtyperequiredmaxplaceholder
mastheadtextyes18ATELIER
issuetext30ISSUE 14 · MARCH
headlinetextyes48The quiet art of slow living
coverlinesmultiline160City escapes for the weekend The new minimal wardrobe Kitchens that work harder Notes on a softer routine
photoimage

Minimal Type minimal-type

supports: background, gradient, typography, logo, platform

Whitespace-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 idtyperequiredmaxplaceholder
eyebrowtext30Issue 01 — Field Notes
titletextyes80A headline that earns the whitespace around it
footertext48freeogimage.com / June 2026

Newsletter newsletter

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
mastheadtext30The Weekly Byte
issuetext36Issue #42 · June 2026
titlemultilineyes80The state of web performance in 2026
dekmultiline150Core Web Vitals, RSC, and the tools worth your attention this month.
ctatext24Read online

Newsprint newsprint

supports: background, typography, logo, platform, noise

A 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 idtyperequiredmaxplaceholder
mastheadtextyes28THE DAILY LEDGER
kickertext36WORLD · MARCH 14, 2026
headlinemultilineyes84City Unveils Plan to Reclaim the Old Harbor District
standfirstmultiline140After years of debate, planners outline a decade-long effort to turn shuttered warehouses into parks, housing, and a waterfront promenade.
bylinetext40By A. Reporter

Scrapbook scrapbook

supports: background, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
captiontext30from the summer journal
titletextyes40A Day by the Lake
notemultiline120We packed sandwiches and chased the light until the sky went gold. Best afternoon of the whole trip.
datetext24June 14
photoimage

State of Report state-of-report

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A "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 idtyperequiredmaxplaceholder
eyebrowtext30Annual Report
titletextyes44The State of Indie SaaS 2026
subtitlemultiline110What 4,200 founders told us about building, shipping, and growing this year.
statsmultiline12068% | ship weekly $9.4k | median MRR 2.3x | YoY growth
orgtext36by Frontwave Labs
ctatext24Read the report

Typographic Poster typographic

supports: background, gradient, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
eyebrowtext40Issue No. 07
titlemultilineyes90Say it loud, say it once, say it big.
footertext60freeogimage.com · June 2026

Ultimate Guide ultimate-guide

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext28The Ultimate Guide
kickertext302026 Edition
titletextyes56The Ultimate Guide to Indie SaaS
subtitlemultiline120Everything from first commit to first paying customer, in one place.
chaptersmultiline200Finding a problem worth solving Shipping a lovable MVP Pricing and packaging Launching to your first users Growth loops that compound
metatext5012 chapters · 40 min read
authortext36by the Frontwave team
coverimageCover / hero image (a drawn stacked-pages motif is used if empty)

Zine Collage zine

supports: background, typography, logo, platform, noise

A 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 idtyperequiredmaxplaceholder
kickertext30ISSUE No. 07
titletextyes40Cut & Paste
subtitlemultiline120Hand-made, photocopied, and stapled in a basement on a Tuesday night.
tagtext30DIY OR DIE

Developer (22)

API Reference api-reference

supports: background, gradient, grid, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
badgetext18API Reference
methodtext8GET
pathtext40/v1/images/generate
titlemultilineyes40Generate an Image
descriptiontext80Create a new render from a template id and slot values.
codemultiline160{ "id": "img_8f2a", "status": "ready" }

Architecture architecture

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext28Architecture
titletextyes44How it works
subtitlemultiline100Requests flow from the edge through the queue and into durable storage.
nodesmultiline160Client | Browser API | Edge Queue | Async Database | Postgres
detailtext60End to end in under 40 ms

Benchmark benchmark

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Benchmark
titletextyes443× faster builds
subtitlemultiline110Median cold-start time across 1,000 runs on identical hardware.
barsmultiline160Ours | 1240 Tool A | 720 Tool B | 540 Tool C | 410
unittext16ops/sec
detailtext50Higher is better · v3.0 · 2026-06

Build Status build-status

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
producttext30Aurora API
eyebrowtext26CI Pipeline
titletextyes40Build passing
subtitlemultiline90All checks green on main — ready to ship.
overalltext16passed
stagesmultiline200Lint | passed | 12s Build | passed | 1m04s Test | passed | 48s Deploy | running | 9s
committext30a1b2c3d · main
badgetext24build: passing

Changelog changelog

supports: background, gradient, grid, typography, logo, platform

Release-notes card with a version chip, headline, and an accented bullet list.

Presets: vibrant (default), mono, bordered

slot idtyperequiredmaxplaceholder
versiontext16v2.4.0
titletextyes70What's new in this release
bulletsmultiline200New dark mode Faster exports Bug fixes

Cheat Sheet cheatsheet

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Cheat Sheet
titletextyes40Keyboard Shortcuts
subtitletext60The moves you reach for every single day.
rowsmultiline220Cmd K | Open the command palette Cmd / | Toggle a line comment
footertext40v3.2 · print me

CLI Tool cli-tool

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
producttext30flowcli
versiontext16v1.4.0
titletextyes44Ship from your terminal
subtitlemultiline120A fast, scriptable CLI for building, previewing, and deploying — no dashboard required.
installtext60brew install flowcli
commandsmultiline90flow init flow build flow deploy --prod
tagstext60zero-config · cross-platform · scriptable · fast

Code Snippet code-snippet

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30Dev Tip
titletextyes50Debounce without a library
langtext16ts
filenametext30debounce.ts
codemultiline320export function debounce(fn, ms) { let t; return (...args) => { clearTimeout(t); t = setTimeout(() => fn(...args), ms); }; }
captiontext90Wrap any handler to cut down on noisy re-runs.

Dark Terminal dark-terminal

supports: background, grid, typography, logo, platform, noise

Terminal/IDE aesthetic with monospace type, window chrome, and a neon prompt.

Presets: classic-green (default), dracula, nord, solarized

slot idtyperequiredmaxplaceholder
prompttext6$
commandtextyes60npx create-awesome-app
outputmultiline160✓ Ready in 0.3s
filenametext28~/projects

Dev Tool dev-tool

supports: background, gradient, typography, logo, platform, noise, vignette, image

A 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 idtyperequiredmaxplaceholder
producttext26Inspectly
titlemultilineyes64Inspect any element in one click
subtitlemultiline120A browser inspector that shows you the exact classes behind every pixel.
featuresmultiline90Live edit Class autocomplete Dark mode
addressBartext40localhost:3000
selectortext32.btn-primary
cssLinetext40padding: 12px 22px
screenshotimageOptional — replaces the faux inspector panel

Docs Hero docs-hero

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
producttext30Northwind
versiontext16v4
titletextyes44Documentation
subtitlemultiline120Everything you need to build, ship, and scale — guides, references, and examples.
searchtext40Search the docs…
sectionstext60Quickstart · API · Guides · CLI · Deploy
ctatext24Read the docs

Error Page error-page

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
iconimageSquare icon/logo (a letter-mark is used if empty)
codetextyes6404
titletextyes44Page not found
subtitlemultiline120The page you are looking for moved or never existed. Check the URL or head back home.
pathtext40/docs/old-link
ctatext26Back to home
brandtext26Aurora Docs

Glossary glossary

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
tagtext24TERM
termtextyes28Idempotent
pronunciationtext48/aɪˈdɛm.pə.tənt/ · adjective
definitionmultilineyes220An 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, vignette

A 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 idtyperequiredmaxplaceholder
badgetext30Integration
titletextyes44Now connects with your stack
subtitlemultiline120Sync data both ways and ship faster — no glue code to maintain.
nameAtext24Flowdeck
nameBtext24Pulsegrid
detailtext60Two-way sync · No code
logoAimageSquare logo (an initial is used if empty)
logoBimageSquare logo (an initial is used if empty)

Package Card package-card

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
registrytext14npm
nametextyes36@toolkit/core
versiontext162.4.1
descriptionmultiline120A tiny, dependency-free toolkit for building fast modern apps.
installtext60npm i @toolkit/core
statsmultiline1201.2M | weekly downloads 26 kB | size 0 | deps
tagstext60typescript · esm · zero-deps · tree-shakeable
licensetext20MIT

Pull Request pull-request

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
repotext30acme/core
prNumbertext8#482
statustext16merged
titletextyes60Add passwordless sign-in flow
detailtext90Replaces the legacy session handshake and adds rotating refresh tokens.
branchFromtext24feature/auth
branchTotext16main
addstext8+1,204
delstext8-318
reviewertext24Mira Vance
avatarsimage-list3 itemsUpload up to 3 faces

Quickstart quickstart

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
producttext30Northwind CLI
eyebrowtext26Quickstart
titletextyes44Up and running in 3 steps
subtitlemultiline90Install, configure, and ship your first build in under five minutes.
stepsmultiline200Install | npm i -g northwind Configure | northwind init my-app Run | northwind dev
footertext50Full docs at northwind.dev/start

Repo Card repo-card

supports: background, gradient, grid, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
repotextyes30northwind/aurora
descriptionmultiline110A tiny, fast state manager for modern web apps — zero boilerplate.
topicstext50state · hooks · ui
starstext1012.4k
forkstext10840
languagetext18TypeScript

Security Advisory security-advisory

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext28Security Advisory
advisoryIdtext24OSV-2026-0142
severitytextyes14critical
titletextyes60Auth bypass via crafted session token
summarymultiline150A forged session token can bypass the signature check and impersonate any user. Self-hosted instances are affected.
affectedtext40< 2.4.1
patchedtext402.4.1
cvsstext89.1
detailtext50Update immediately

Status Page status-page

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
orgtext30Northwind Cloud
titletext36System Status
overalltext16operational
headlinetextyes60All systems operational
componentsmultiline160API | operational Dashboard | operational Webhooks | degraded
updatedtext40Updated 2 min ago

Tech Stack tech-stack

supports: background, gradient, grid, image, typography, logo, platform, noise, vignette

A "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 idtyperequiredmaxplaceholder
eyebrowtext26Built with
titletextyes42Our stack
subtitlemultiline100The tools we reach for to ship fast and keep things boring.
itemsmultiline160React TypeScript Postgres Redis Tailwind Node.js Docker Vite
groupstext60Frontend · Backend · Infra
detailtext50Open source · MIT licensed
logosimage-list8 itemsAdd logo

Uptime uptime

supports: background, gradient, grid, typography, logo, platform, noise, vignette

An 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 idtyperequiredmaxplaceholder
orgtext30Northwind Cloud
eyebrowtext26Last 90 days
uptimePcttextyes1099.98%
titletext40Reliable by design
subtitlemultiline100Monitored every minute from regions worldwide.
barsmultiline220up, up, up, degraded, up, up, down, up, up, up
statsmultiline120120ms | avg response 0 | incidents 4 | regions
updatedtext36Updated 2 min ago

Social (8)

Event Card event

supports: background, gradient, image, typography, logo, platform, vignette

Podcast, talk, or webinar card with a title, host, date-time, and a rounded cover image.

Presets: talk (default), episode, webinar

slot idtyperequiredmaxplaceholder
titletextyes80The Future of Frontend
hosttext48with Jane Doe
datetimetext40Thu, Jun 26 · 6:00 PM PT
coverimageSquare cover image

Giveaway giveaway

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
badgetext18GIVEAWAY
titletextyes44Win our big summer bundle
prizetext50Win a $500 gift card
stepsmultiline160Follow this account Like this post Tag two friends Share to your story
deadlinetext40Ends March 31
photoimageAdd prize photo

Link in Bio link-in-bio

supports: background, gradient, image, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
nametextyes30Robin Meadows
handletext30@robinmakes
biomultiline70Designer & maker sharing tutorials and side projects.
linksmultiline160Latest project Newsletter Shop the prints Book a call Say hello
avatarimage

Logo Wall logo-wall

supports: background, gradient, grid, typography, logo, platform, noise, vignette

A "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 idtyperequiredmaxplaceholder
headlinetextyes42List your SaaS
subtitlemultiline130Get discovered by founders, makers, and buyers in the fastest-growing software directory.
logosimage-list12 itemsAdd logo
brandsmultiline160Nimbus Quill Orbit Pineline Vaultly Draftbox
counttext48Join 1,200+ tools already listed

This or That Poll poll

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
questiontextyes60Which one wins?
optionAtext40Morning runs
percentAtext462
optionBtext40Late-night sessions
percentBtext438
footertext401,204 votes

Quote quote

supports: background, gradient, image, typography, logo, platform

A large pull-quote with a big opening quote mark, author name, role, and round avatar.

Presets: big-quote (default), card, centered

slot idtyperequiredmaxplaceholder
quotemultilineyes220Good ideas earn their place; everything else is just noise.
authortext40Adrian Mercer
roletext48Design Lead, Lumenstack
avatarimageSquare headshot

Meet the Team team

supports: background, gradient, typography, logo, platform, noise, vignette

A 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 idtyperequiredmaxplaceholder
eyebrowtext30We're growing
titletextyes48Meet the team
membersmultiline160Ada Brightwater | Founder Leo Marsh | Engineering Mira Vance | Design
avatarsimage-list5 itemsAdd photo
taglinetext60Building good things, together.

Testimonial Wall testimonial-wall

supports: background, gradient, grid, typography, logo, platform, noise, vignette, image

A 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 idtyperequiredmaxplaceholder
headlinetextyes40Loved by Teams Everywhere
subtitletext56Real words from people who switched.
testimonialsmultiline300Cut 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
avatarsimage-list4 itemsAdd photo