-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOmni_Short_Pitch.html
More file actions
383 lines (345 loc) · 15.8 KB
/
Omni_Short_Pitch.html
File metadata and controls
383 lines (345 loc) · 15.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<!DOCTYPE html>
<html data-theme="dark" lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Omni - Short Pitch</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;600&display=swap" rel="stylesheet">
<style>
:root {
--mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
--sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
--radius: 10px;
}
[data-theme="dark"] {
--bg-primary: #0a0a0a;
--bg-secondary: #09090b;
--bg-tertiary: #141414;
--bg-hover: #1a1a1a;
--border: #27272a;
--border-light: #3f3f46;
--text-primary: #fafafa;
--text-secondary: #a1a1aa;
--text-muted: #71717a;
--accent: #fafafa;
--green: #22c55e;
--orange: #fb923c;
--blue: #3b82f6;
--body-gradient: linear-gradient(to bottom, #0a0a0a, #141414);
--surface-card: rgba(20, 20, 20, 0.7);
--shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--sans);
background: var(--body-gradient);
background-attachment: fixed;
color: var(--text-primary);
min-height: 100vh;
overflow-x: hidden;
}
.slide {
width: 960px;
height: 540px;
margin: 40px auto;
display: flex;
flex-direction: column;
padding: 48px;
background: var(--surface-card);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow);
gap: 20px;
}
.header {
display: flex;
flex-direction: column;
gap: 8px;
}
h1 {
font-size: 2rem;
font-weight: 600;
color: var(--text-primary);
letter-spacing: -0.5px;
margin: 0;
}
.heading-accent {
color: var(--orange);
}
.heading-accent.green {
color: var(--green);
}
.heading-accent.blue {
color: var(--blue);
}
.subtitle {
font-size: 0.75rem;
color: var(--text-muted);
font-family: var(--mono);
font-weight: 400;
text-transform: uppercase;
letter-spacing: 1px;
}
.section-title {
font-size: 0.95rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 8px;
}
.content-wrapper {
flex: 1;
display: flex;
flex-direction: column;
gap: 16px;
min-height: 0;
overflow: visible;
}
.bullets {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
margin: 0;
padding: 0;
}
.bullets li {
font-size: 0.85rem;
color: var(--text-secondary);
padding-left: 16px;
position: relative;
line-height: 1.5;
font-weight: 400;
}
.bullets li:before {
content: "→";
position: absolute;
left: 0;
color: var(--orange);
font-weight: 600;
}
.bullets.green li:before {
color: var(--green);
}
.bullets.gray li:before {
color: var(--text-secondary);
}
.bullets.blue li:before {
color: var(--blue);
}
.bullets li strong {
color: var(--text-primary);
font-weight: 600;
}
.comparison-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.comparison-card {
background: var(--bg-tertiary);
border: 1px solid var(--border);
border-radius: 8px;
padding: 16px;
display: flex;
flex-direction: column;
gap: 6px;
transition: all 0.2s ease;
}
.comparison-card:hover {
background: var(--bg-hover);
border-color: var(--orange);
}
.comparison-label {
font-size: 0.75rem;
font-weight: 600;
color: var(--text-primary);
font-family: var(--mono);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.comparison-text {
font-size: 0.8rem;
color: var(--text-secondary);
line-height: 1.4;
}
.outcome-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 6px;
margin: 0;
padding: 0;
}
.outcome-list li {
font-size: 0.85rem;
color: var(--text-secondary);
padding-left: 16px;
position: relative;
line-height: 1.4;
}
.outcome-list li:before {
content: "→";
position: absolute;
left: 0;
color: var(--orange);
font-weight: 600;
}
.highlight-box {
background: var(--bg-tertiary);
border: 1px solid var(--border);
border-radius: 8px;
padding: 16px;
margin-top: 8px;
}
.highlight-box .section-title {
color: var(--text-primary);
margin-bottom: 10px;
}
.footer-text {
font-size: 0.7rem;
color: var(--text-muted);
font-family: var(--mono);
letter-spacing: 0.5px;
text-align: center;
margin-top: auto;
}
</style>
</head>
<body>
<!-- SLIDE 1: PROBLEM -->
<section class="slide">
<div class="header">
<h1><span class="heading-accent">Problem</span></h1>
</div>
<div class="content-wrapper">
<div>
<p class="section-title">The Problem (in short)</p>
<p style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px;">When using AI to write code, this happens:</p>
<div style="display: flex; align-items: center; gap: 8px; margin-top: 16px;">
<div style="flex: 1; background: rgba(251, 146, 60, 0.15); border: 1px solid rgba(251, 146, 60, 0.4); border-radius: 8px; padding: 12px; text-align: center;">
<p style="font-size: 0.75rem; color: var(--orange); font-weight: 600; margin-bottom: 4px;">1</p>
<p style="font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4;">AI saves too many small changes</p>
</div>
<p style="color: var(--orange); font-size: 1.2rem; font-weight: 600;">→</p>
<div style="flex: 1; background: rgba(251, 146, 60, 0.15); border: 1px solid rgba(251, 146, 60, 0.4); border-radius: 8px; padding: 12px; text-align: center;">
<p style="font-size: 0.75rem; color: var(--orange); font-weight: 600; margin-bottom: 4px;">2</p>
<p style="font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4;">Each change gets a poor explanation</p>
</div>
<p style="color: var(--orange); font-size: 1.2rem; font-weight: 600;">→</p>
<div style="flex: 1; background: rgba(251, 146, 60, 0.15); border: 1px solid rgba(251, 146, 60, 0.4); border-radius: 8px; padding: 12px; text-align: center;">
<p style="font-size: 0.75rem; color: var(--orange); font-weight: 600; margin-bottom: 4px;">3</p>
<p style="font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4;">No one remembers why something was done</p>
</div>
<p style="color: var(--orange); font-size: 1.2rem; font-weight: 600;">→</p>
<div style="flex: 1; background: rgba(251, 146, 60, 0.15); border: 1px solid rgba(251, 146, 60, 0.4); border-radius: 8px; padding: 12px; text-align: center;">
<p style="font-size: 0.75rem; color: var(--orange); font-weight: 600; margin-bottom: 4px;">4</p>
<p style="font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4;">The result is mess and chaos in the project's history</p>
</div>
</div>
</div>
<div class="highlight-box">
<div style="display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px;">
<p style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6;">
<strong style="color: var(--text-primary);">Before:</strong> A human made 10 tidy changes with good explanations
</p>
<p style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6;">
<strong style="color: var(--text-primary);">Now:</strong> AI creates 100+ small changes with poor explanations
</p>
</div>
<div>
<p class="section-title">It becomes:</p>
<ul class="outcome-list">
<li style="color: var(--orange);">hard to understand</li>
<li style="color: var(--orange);">hard to control</li>
<li style="color: var(--orange);">hard to trust</li>
</ul>
</div>
</div>
</div>
</section>
<!-- SLIDE 2: SOLUTION -->
<section class="slide">
<div class="header">
<h1><span class="heading-accent green">Solution</span></h1>
</div>
<div class="content-wrapper">
<div>
<p class="section-title">What Omni Is (very simply)</p>
<p style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px;">Omni is like a smart secretary for code work:</p>
<div style="display: flex; align-items: stretch; gap: 8px; margin-top: 16px;">
<div style="flex: 1; background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.4); border-radius: 8px; padding: 12px; text-align: center; display: flex; flex-direction: column; justify-content: center;">
<p style="font-size: 0.75rem; color: var(--green); font-weight: 600; margin-bottom: 4px;">1</p>
<p style="font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4;">sees what was changed</p>
</div>
<p style="color: var(--green); font-size: 1.2rem; font-weight: 600; display: flex; align-items: center;">→</p>
<div style="flex: 1; background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.4); border-radius: 8px; padding: 12px; text-align: center; display: flex; flex-direction: column; justify-content: center;">
<p style="font-size: 0.75rem; color: var(--green); font-weight: 600; margin-bottom: 4px;">2</p>
<p style="font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4;">sees why it was done</p>
</div>
<p style="color: var(--green); font-size: 1.2rem; font-weight: 600; display: flex; align-items: center;">→</p>
<div style="flex: 1; background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.4); border-radius: 8px; padding: 12px; text-align: center; display: flex; flex-direction: column; justify-content: center;">
<p style="font-size: 0.75rem; color: var(--green); font-weight: 600; margin-bottom: 4px;">3</p>
<p style="font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4;">gathers information from multiple places</p>
</div>
<p style="color: var(--green); font-size: 1.2rem; font-weight: 600; display: flex; align-items: center;">→</p>
<div style="flex: 1; background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.4); border-radius: 8px; padding: 12px; text-align: center; display: flex; flex-direction: column; justify-content: center;">
<p style="font-size: 0.75rem; color: var(--green); font-weight: 600; margin-bottom: 4px;">4</p>
<p style="font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4;">tidies up before it's saved</p>
</div>
</div>
</div>
<div class="highlight-box">
<p class="section-title">What Omni Actually Does</p>
<p style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px;">
<strong style="color: var(--text-primary);">Instead of:</strong> "Changed some code"<br>
<strong style="color: var(--text-primary);">Omni ensures:</strong> "This was changed because we needed to fix X, solve Y, and support Z"
</p>
<ul class="bullets green">
<li style="color: var(--green);">merges many small changes into fewer, tidy ones</li>
<li style="color: var(--green);">adds explanations that humans understand</li>
<li style="color: var(--green);">preserves the decisions, not just the changes</li>
</ul>
</div>
</div>
</section>
<!-- SLIDE 3: RESULT -->
<section class="slide">
<div class="header">
<h1>Result</h1>
</div>
<div class="content-wrapper">
<div>
<p class="section-title">Simple Mental Image</p>
<p style="font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px;">Think of it this way:</p>
<p style="font-size: 0.85rem; color: var(--text-primary); line-height: 1.6; margin-bottom: 8px; font-weight: 600;">
- AI is a very fast but forgetful coworker with short memory
</p>
<p style="font-size: 0.85rem; color: var(--text-primary); line-height: 1.6; margin-bottom: 12px; font-weight: 600;">
- Omni is the adult in the room who:
</p>
<ul style="list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; padding-left: 20px;">
<li style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5;">1. remembers the context</li>
<li style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5;">2. writes good notes</li>
<li style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5;">3. tidies up before anything is archived</li>
</ul>
</div>
<div class="highlight-box">
<p class="section-title">The Result</p>
<ul style="list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0;">
<li style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.4;">- Less mess</li>
<li style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.4;">- Fewer, better changes</li>
<li style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.4;">- Easier to understand what happened</li>
<li style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.4;">- Easier to collaborate</li>
<li style="font-size: 0.85rem; color: var(--text-secondary); line-height: 1.4;">- Less stress</li>
</ul>
</div>
</div>
</section>
</body>
</html>