Creating Decks
Slide Types
DeckFlow supports multiple slide types:
| Type | Description |
|---|---|
title | Title slide with heading and subtitle |
content | Standard content with heading and body |
bullets | Bullet point list |
image | Full-bleed or contained image |
code | Syntax-highlighted code block |
quote | Blockquote with attribution |
two-column | Two-column layout |
Deck Schema
{
"title": "My Presentation",
"slug": "my-presentation",
"audienceType": "developers",
"isPublic": true,
"theme": {
"primary": "#3b82f6",
"secondary": "#1e293b",
"background": "#0f172a",
"text": "#f8fafc",
"font": "Inter"
},
"slides": [
{
"id": "slide-1",
"type": "title",
"data": {
"heading": "Hello World",
"subheading": "A presentation about things"
}
}
]
}Templates
Choose from built-in templates optimized for different audiences. Each template provides pre-designed slide layouts and suggested content structure.
Last updated on