-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreenshot-1-hero.html
More file actions
318 lines (287 loc) · 9.1 KB
/
Copy pathscreenshot-1-hero.html
File metadata and controls
318 lines (287 loc) · 9.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1920">
<title>AI Assistant – How It Works</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1920px;
height: 960px;
background: #0f0f1a;
font-family: system-ui, -apple-system, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
}
body::before {
content: '';
position: absolute;
width: 900px; height: 900px;
border-radius: 50%;
background: radial-gradient(circle, rgba(99,102,241,0.14) 0%, transparent 65%);
top: -300px; left: -200px;
}
body::after {
content: '';
position: absolute;
width: 700px; height: 700px;
border-radius: 50%;
background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 65%);
bottom: -200px; right: 100px;
}
.header {
text-align: center;
margin-bottom: 72px;
position: relative;
z-index: 1;
}
.eyebrow {
font-size: 13px;
font-weight: 600;
letter-spacing: 3px;
text-transform: uppercase;
color: #6366f1;
margin-bottom: 16px;
}
.title {
font-size: 56px;
font-weight: 800;
color: #ffffff;
letter-spacing: -1px;
line-height: 1.1;
}
.title span {
background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.flow {
display: flex;
align-items: center;
gap: 0;
position: relative;
z-index: 1;
}
.step {
display: flex;
flex-direction: column;
align-items: center;
width: 360px;
}
.step-visual {
width: 240px;
height: 200px;
border-radius: 24px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 28px;
position: relative;
overflow: hidden;
}
.step-visual::before {
content: '';
position: absolute;
inset: 0;
border-radius: 24px;
background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, transparent 60%);
}
/* Step 1 — text selection visual */
.text-mock {
padding: 20px 24px;
width: 200px;
}
.text-line {
height: 10px;
border-radius: 5px;
background: rgba(255,255,255,0.12);
margin-bottom: 10px;
}
.text-line.selected {
background: rgba(99,102,241,0.5);
box-shadow: 0 0 12px rgba(99,102,241,0.4);
}
.text-line.w80 { width: 80%; }
.text-line.w65 { width: 65%; }
.text-line.w90 { width: 90%; }
.text-line.w55 { width: 55%; }
.text-line.w75 { width: 75%; }
/* Step 2 — button visual */
.button-mock {
width: 108px;
height: 108px;
border-radius: 22px;
background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
box-shadow: 0 0 50px rgba(99,102,241,0.55), 0 8px 32px rgba(0,0,0,0.4);
display: flex;
align-items: center;
justify-content: center;
}
.button-mock svg {
width: 64px;
height: 64px;
}
/* Step 3 — result visual */
.result-mock {
padding: 16px 20px;
width: 200px;
}
.result-bubble {
background: rgba(99,102,241,0.15);
border: 1px solid rgba(99,102,241,0.3);
border-radius: 12px;
padding: 12px 16px;
}
.result-line {
height: 9px;
border-radius: 5px;
background: rgba(99,102,241,0.4);
margin-bottom: 8px;
}
.result-line:last-child { margin-bottom: 0; }
.result-line.w70 { width: 70%; }
.result-line.w85 { width: 85%; }
.result-line.w60 { width: 60%; }
.check-badge {
position: absolute;
top: 14px; right: 14px;
width: 32px; height: 32px;
border-radius: 50%;
background: #22c55e;
display: flex; align-items: center; justify-content: center;
}
.check-badge svg {
width: 20px;
height: 20px;
}
.step-num {
width: 32px; height: 32px;
border-radius: 50%;
background: rgba(99,102,241,0.15);
border: 1px solid rgba(99,102,241,0.3);
display: flex; align-items: center; justify-content: center;
font-size: 13px;
font-weight: 700;
color: #818cf8;
margin-bottom: 12px;
}
.step-title {
font-size: 22px;
font-weight: 700;
color: #ffffff;
text-align: center;
margin-bottom: 8px;
}
.step-desc {
font-size: 15px;
color: rgba(255,255,255,0.4);
text-align: center;
line-height: 1.5;
}
/* Arrow connector */
.arrow {
display: flex;
align-items: center;
padding: 0 12px;
margin-bottom: 100px;
flex-shrink: 0;
}
.arrow-line {
width: 80px;
height: 2px;
background: linear-gradient(to right, rgba(99,102,241,0.2), rgba(99,102,241,0.6));
position: relative;
}
.arrow-line::after {
content: '';
position: absolute;
right: -1px; top: -5px;
width: 0; height: 0;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 10px solid rgba(99,102,241,0.6);
}
</style>
</head>
<body>
<div class="header">
<div class="eyebrow">AI Assistant · Stream Deck Plugin</div>
<div class="title">AI at your <span>fingertips</span></div>
</div>
<div class="flow">
<!-- Step 1: Select Text -->
<div class="step">
<div class="step-visual">
<div class="text-mock">
<div class="text-line w80"></div>
<div class="text-line w65"></div>
<div class="text-line w90 selected"></div>
<div class="text-line w55 selected"></div>
<div class="text-line w75 selected"></div>
</div>
</div>
<div class="step-num">1</div>
<div class="step-title">Select Text</div>
<div class="step-desc">Highlight any text<br>in any application</div>
</div>
<div class="arrow"><div class="arrow-line"></div></div>
<!-- Step 2: Press Button — uses our actionIcon (AI chip) -->
<div class="step">
<div class="step-visual">
<div class="button-mock">
<!-- actionIcon.svg inline -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72">
<rect x="18" y="18" width="36" height="36" rx="6" fill="none" stroke="#ffffff" stroke-width="3.5"/>
<rect x="26" y="26" width="20" height="20" rx="3" fill="#ffffff"/>
<line x1="18" y1="27" x2="10" y2="27" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
<line x1="18" y1="36" x2="10" y2="36" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
<line x1="18" y1="45" x2="10" y2="45" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
<line x1="54" y1="27" x2="62" y2="27" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
<line x1="54" y1="36" x2="62" y2="36" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
<line x1="54" y1="45" x2="62" y2="45" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
<line x1="27" y1="18" x2="27" y2="10" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
<line x1="36" y1="18" x2="36" y2="10" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
<line x1="45" y1="18" x2="45" y2="10" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
<line x1="27" y1="54" x2="27" y2="62" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
<line x1="36" y1="54" x2="36" y2="62" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
<line x1="45" y1="54" x2="45" y2="62" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
</svg>
</div>
</div>
<div class="step-num">2</div>
<div class="step-title">Press Button</div>
<div class="step-desc">One tap on your<br>Stream Deck key</div>
</div>
<div class="arrow"><div class="arrow-line"></div></div>
<!-- Step 3: Result — uses actionSuccess icon -->
<div class="step">
<div class="step-visual">
<div class="result-mock">
<div class="result-bubble">
<div class="result-line w85"></div>
<div class="result-line w70"></div>
<div class="result-line w60"></div>
</div>
</div>
<!-- actionSuccess.svg inline -->
<div class="check-badge">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72">
<polyline points="20,37 30,47 52,25" fill="none" stroke="#ffffff" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
<div class="step-num">3</div>
<div class="step-title">Result Pasted</div>
<div class="step-desc">AI response replaces<br>your selection instantly</div>
</div>
</div>
</body>
</html>