Create Your Presentation

Upload a JSON file to create beautiful, interactive presentations instantly

Upload Presentation
Select a JSON file containing your presentation data
AI Generated
Describe your presentation and let AI create it for you
JSON Format Guide
Your JSON file should follow this structure for optimal results
{
  "id": "unique-presentation-id",
  "name": "My Presentation",
  "slides": [
    {
      "type": "title",
      "title": "Welcome!",
      "subtitle": "Optional subtitle"
    },
    {
      "type": "bulletPoints", 
      "title": "Key Points",
      "items": ["Point 1", "Point 2", "Point 3"]
    },
    {
      "type": "quote",
      "text": "Inspirational quote here",
      "author": "Quote Author"
    },
    {
      "type": "comparison",
      "title": "Compare Options",
      "left": {
        "title": "Option A",
        "items": ["Feature 1", "Feature 2"]
      },
      "right": {
        "title": "Option B", 
        "items": ["Feature 3", "Feature 4"]
      }
    },
    {
      "type": "timeline",
      "title": "Project Timeline",
      "events": [
        {"date": "2024", "text": "Project start"},
        {"date": "2025", "text": "Launch"}
      ]
    },
    {
      "type": "chart",
      "title": "Data Visualization",
      "chartType": "bar",
      "data": [
        {"label": "Item 1", "value": 100},
        {"label": "Item 2", "value": 75}
      ]
    },
    {
      "type": "process",
      "title": "Workflow Steps",
      "steps": [
        {"step": 1, "text": "First step"},
        {"step": 2, "text": "Second step"}
      ]
    },
    {
      "type": "callToAction",
      "title": "Take Action!",
      "buttonText": "Click Here",
      "link": "https://example.com"
    }
  ]
}

Basic Types:

  • title - Main title slide
  • bulletPoints - List of items
  • code - Syntax highlighted code
  • image - Full image display

Content Types:

  • textImage - Text with image
  • quote - Quote with author
  • comparison - Side-by-side comparison
  • callToAction - Action button

Data Types:

  • timeline - Chronological events
  • chart - Data visualization
  • process - Step-by-step workflow