PaperJSX
Sign in

PPTX Examples

Production decks from JSON.

Eight real-world PPTX examples — QBR decks, pitch decks, sales training, product launches, investor updates, conference talks, AI-generated presentations, and dashboard exports. Each one works in the free tier. Each one shows exactly where Pro makes the output better.

Quarterly Business Review

6 slides
SaaS companies, analytics platforms, stakeholder reporting

Every SaaS company generates QBRs. Currently done manually in PowerPoint or Google Slides. A programmatic QBR from live data is the dream use case — KPI cards, editable revenue charts, customer growth trends, and next-step assignments, all from one JSON payload.

Q2 2026 Business Review
Meridian Labs, Inc.
Prepared for the Board of Directors | June 2026 | Confidential
{
  "version": "1.0",
  "presentationTitle": "Q2 2026 Business Review",
  "accentColor": "#2563EB",
  "slides": [
    {
      "pattern": "title",
      "content": {
        "title": "Q2 2026 Business Review",
        "subtitle": "Meridian Labs, Inc."
      }
    },
    {
      "pattern": "dashboard",
      "content": {
        "title": "Key Performance Indicators",
        "kpis": [
          { "label": "MRR", "value": "$2.4M", "trend": "up", "sublabel": "+34% QoQ" },
          { "label": "Churn", "value": "1.2%", "trend": "down", "sublabel": "-0.3pp" },
          { "label": "NPS", "value": "72", "trend": "up", "sublabel": "+8 pts" },
          { "label": "Active Users", "value": "12,400", "trend": "up", "sublabel": "+18%" }
        ]
      }
    },
    {
      "pattern": "chart-focus",
      "content": {
        "title": "Monthly Revenue",
        "chart": {
          "type": "bar",
          "series": [
            { "name": "Subscription", "dataPoints": [
              { "category": "Jan", "value": 320 },
              { "category": "Feb", "value": 340 },
              { "category": "Mar", "value": 365 },
              { "category": "Apr", "value": 390 },
              { "category": "May", "value": 410 },
              { "category": "Jun", "value": 445 }
            ]},
            { "name": "Services", "dataPoints": [
              { "category": "Jan", "value": 45 },
              { "category": "Feb", "value": 52 },
              { "category": "Mar", "value": 48 },
              { "category": "Apr", "value": 55 },
              { "category": "May", "value": 62 },
              { "category": "Jun", "value": 70 }
            ]}
          ]
        }
      }
    },
    {
      "pattern": "chart-focus",
      "content": {
        "title": "Customer Growth",
        "chart": {
          "type": "line",
          "series": [
            { "name": "Enterprise", "dataPoints": [
              { "category": "Jan", "value": 340 },
              { "category": "Jun", "value": 448 }
            ]},
            { "name": "Mid-Market", "dataPoints": [
              { "category": "Jan", "value": 520 },
              { "category": "Jun", "value": 680 }
            ]}
          ]
        }
      }
    },
    {
      "pattern": "chart-focus",
      "content": {
        "title": "Product Usage Breakdown",
        "chart": {
          "type": "pie",
          "series": [{
            "name": "Usage",
            "dataPoints": [
              { "category": "Analytics", "value": 35 },
              { "category": "API", "value": 25 },
              { "category": "Collaboration", "value": 20 },
              { "category": "Reports", "value": 12 },
              { "category": "Admin", "value": 8 }
            ]
          }]
        }
      }
    },
    {
      "pattern": "bullets",
      "content": {
        "title": "Next Steps",
        "bulletPoints": [
          "Launch enterprise tier pricing — Sarah Chen",
          "Ship API v2 with batch endpoints — James Park",
          "Hire 3 AEs for EMEA expansion — Maya Torres",
          "Complete SOC 2 Type II audit — Alex Rivera",
          "Reduce P50 latency to <200ms — James Park",
          "Pilot customer advisory board — Lin Wei"
        ]
      }
    }
  ]
}
FREEIncluded in the free tier
  • 6 slides with title, KPIs, charts, and bullets
  • Bar, line, and pie charts with editable Excel data
  • 4 metric cards using flexbox-positioned shapes
  • Bullet points with owner assignments
  • OOXML spec-validated output
  • ~150ms generation time
What Pro adds
Waterfall chart showing MRR movement (new, expansion, contraction, churn) — requires ChartEx
Company brand template injected from .potx file — free version uses generic white theme
SmartArt process flow showing customer journey on a dedicated slide
Animated bullet points (entrance: fade in one by one)
Korean/Japanese customer names via HarfBuzz
The waterfall chart and branded template turn a good QBR into one that matches your corporate deck.
Try it yourself
npm install @paperjsx/json-to-pptx && npx tsx qbr-example.ts

Get started

Generate your first deck in under 5 minutes.

Free tier. No credit card. Send one JSON payload and get a native, editable PowerPoint file back.