Archived docs Get your API Key
Get started
Tutorials
Guides
Reference
Help for AI agents
🤖 AI Assistant

Component basic/000

Component ID: basic/000

A versatile text card with a headline and body paragraphs. The card fades in, then headline and body text slide up into view with staggered timing. Supports multi-paragraph body text (pass an array of strings). Supports RTL text. The card can be positioned anywhere in the frame and styled with CSS properties.

SectionText card components with headline, body, and optional decorative elements
AnimationCard fades in (500ms). Headline and body slide up from below with staggered delay (400ms between elements, 500ms duration).
Intro duration10 s

Preview

Element schema

Minimal shape of a basic/000 component element:

{
    "type": "component",
    "component": "basic/000",
    "settings": {}
}

See the full component element reference for shared properties like duration, start, x, y, etc.

Settings

The settings property accepts the following groups. Each group contains CSS-like properties; see component CSS properties for the full list of supported keys.

card

Overall card container positioning and layout.

PropertyTypeDefaultDescription
vertical-alignstring (enum)topVertical position. Values: top, center, bottom
horizontal-alignstring (enum)Horizontal position. Values: left, center, right
text-alignstring (enum)leftText alignment. Values: left, center, right
widthstringCard width (e.g. '80%', '50vw').
marginstring1vwMargin around card.
paddingstring20pxInner padding.
backgroundstringCard background color or gradient.
border-radiusstringCorner rounding (e.g. '10px').
overflowstringhiddenOverflow behavior.

headline

Main headline text.

PropertyTypeDefaultDescription
textstringHeadline text.
colorstringText color.
font-sizestring5vwFont size (e.g. '5vw', '40px').
font-familystringInterGoogle Font name.
font-weightstring700Font weight.
letter-spacingstringLetter spacing.
marginstringMargin below headline.

body

Body text paragraphs. The 'text' property can be a single string or an array of strings for multiple paragraphs.

PropertyTypeDefaultDescription
textstring|arrayBody text. String or array of strings for multiple paragraphs. Supports HTML tags like , .
colorstringText color.
font-sizestring3.5vwFont size.
font-familystringInterGoogle Font name.
font-weightstring700Font weight.
directionstring (enum)Text direction. Set to 'rtl' for right-to-left languages. Values: ltr, rtl