lumina-slides 8.2.0 → 8.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,10 +5,13 @@
5
5
  <p>
6
6
  <b>The Interface Layer for the Agentic Era</b>
7
7
  </p>
8
- <p>
9
8
  The first presentation engine designed for <b>LLMs</b>. Turn JSON into cinematic, interactive experiences.
10
9
  </p>
11
10
  <br />
11
+
12
+ <img src="public/demo.gif" alt="Lumina Engine Demo" width="100%" style="border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);" />
13
+
14
+ <br />
12
15
  </div>
13
16
 
14
17
  **Lumina Engine** is a high-performance, declarative library that enables AI agents and LLMs to generate professional, interactive UI and slide decks by simply outputting JSON. It bridges the gap between text generation and visual storytelling, offering deterministic, GPU-accelerated rendering without the hallucination of pixel-generation.
@@ -90,13 +93,47 @@ engine.load(llmOutput);
90
93
 
91
94
  Lumina provides semantic layout types that LLMs can easily select based on context.
92
95
 
93
- | Type | Best Used For... |
94
- | :-------------- | :--------------------------------------------------- |
95
- | **`statement`** | Big ideas, quotes, titles. Great for "cover" slides. |
96
- | **`half`** | Comparisons, text + image context. |
97
- | **`features`** | Lists of benefits, KPIs, or grid items. |
98
- | **`timeline`** | Chronological events, roadmaps, history. |
99
- | **`steps`** | Tutorials, flows, numbered processes. |
96
+ ### **Statement**
97
+
98
+ Big ideas, quotes, titles. Great for "cover" slides.
99
+
100
+ [![Statement Layout](public/layout-statement.png)](public/layout-statement.json)
101
+ [View JSON Source](public/layout-statement.json)
102
+
103
+ ### **Half**
104
+
105
+ Comparisons, text + image context.
106
+
107
+ [![Half Layout](public/layout-half.png)](public/layout-half.json)
108
+ [View JSON Source](public/layout-half.json)
109
+
110
+ ### **Features**
111
+
112
+ Lists of benefits, KPIs, or grid items.
113
+
114
+ [![Features Layout](public/layout-features.png)](public/layout-features.json)
115
+ [View JSON Source](public/layout-features.json)
116
+
117
+ ### **Timeline**
118
+
119
+ Chronological events, roadmaps, history.
120
+
121
+ [![Timeline Layout](public/layout-timeline.png)](public/layout-timeline.json)
122
+ [View JSON Source](public/layout-timeline.json)
123
+
124
+ ### **Steps**
125
+
126
+ Tutorials, flows, numbered processes.
127
+
128
+ [![Steps Layout](public/layout-steps.png)](public/layout-steps.json)
129
+ [View JSON Source](public/layout-steps.json)
130
+
131
+ ### **Embedded (Widget Mode)**
132
+
133
+ Slides constrained to a container, perfect for dashboards.
134
+
135
+ [![Embedded Layout](public/layout-embedded.png)](public/layout-embedded.json)
136
+ [View JSON Source](public/layout-embedded.json)
100
137
 
101
138
  ## 📚 API Reference
102
139