A production-grade pitch deck editor that plugs into your product. Templates, AI, data, and exports — through one SDK.
{
"type": "metric",
"source": "db.arr",
"value": "$48M"
}Your app provides templates, data, AI, images, and storage. Lumen renders the editor and emits a structured scene graph back.
import { LumenEditor } from "@lumen/react";
export default function App() {
return (
<LumenEditor
apiKey={process.env.LUMEN_KEY}
template="pitch.deck.v3"
data={{ company: "Acme", arr: "$48M" }}
onExport={(file) => save(file)}
/>
);
}