-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspotiactions.html
More file actions
380 lines (335 loc) · 12.1 KB
/
Copy pathspotiactions.html
File metadata and controls
380 lines (335 loc) · 12.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SpotiActions — Advanced Spotify Automation for iOS</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--bg-color: #0b0b0c;
--container-bg: #121214;
--accent-color: #1DB954; /* Spotify Green */
--accent-hover: #1ed760;
--text-main: #ffffff;
--text-muted: #9ca3af;
--border-color: #222226;
--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: var(--bg-color);
color: var(--text-main);
font-family: var(--font-sans);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
display: flex;
justify-content: center;
padding: 40px 20px;
}
/* Estructura centralizada estilo Cinephile */
.wrapper {
width: 100%;
max-width: 800px;
background-color: var(--container-bg);
border: 1px solid var(--border-color);
border-radius: 24px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
/* Header Navbar */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 32px;
border-bottom: 1px solid var(--border-color);
}
.brand {
display: flex;
align-items: center;
gap: 12px;
font-size: 1.25rem;
font-weight: 700;
letter-spacing: -0.025em;
}
.brand i {
color: var(--accent-color);
font-size: 1.5rem;
}
.cta-header {
background-color: var(--accent-color);
color: #000000;
text-decoration: none;
font-weight: 600;
font-size: 0.875rem;
padding: 8px 16px;
border-radius: 9999px;
transition: background-color 0.2s ease, transform 0.1s ease;
}
.cta-header:hover {
background-color: var(--accent-hover);
transform: translateY(-1px);
}
/* Hero Section */
.hero {
padding: 48px 32px 32px 32px;
text-align: center;
border-bottom: 1px solid var(--border-color);
}
.hero h1 {
font-size: 2.5rem;
font-weight: 800;
letter-spacing: -0.04em;
line-height: 1.15;
margin-bottom: 16px;
}
.hero p {
color: var(--text-muted);
font-size: 1.125rem;
max-width: 600px;
margin: 0 auto 32px auto;
}
/* Showcase Mockup Principal */
.hero-mockup {
width: 100%;
max-width: 580px;
height: auto;
border-radius: 16px;
border: 1px solid var(--border-color);
box-shadow: 0 12px 24px rgba(0,0,0,0.3);
margin: 0 auto;
display: block;
}
/* Features Section */
.features {
padding: 48px 32px;
border-bottom: 1px solid var(--border-color);
}
.section-title {
font-size: 1.5rem;
font-weight: 700;
letter-spacing: -0.03em;
margin-bottom: 32px;
display: flex;
align-items: center;
gap: 10px;
}
.features-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}
@media (max-width: 640px) {
.features-grid {
grid-template-columns: 1fr;
}
.hero h1 { font-size: 2rem; }
}
.feature-card {
background-color: rgba(255, 255, 255, 0.02);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 24px;
}
.feature-card i {
color: var(--accent-color);
font-size: 1.5rem;
margin-bottom: 16px;
display: block;
}
.feature-card h3 {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 8px;
letter-spacing: -0.01em;
}
.feature-card p {
color: var(--text-muted);
font-size: 0.95rem;
line-height: 1.45;
}
/* Gallery / UI Context Section */
.ui-showcase {
padding: 48px 32px;
border-bottom: 1px solid var(--border-color);
}
.gallery-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-top: 24px;
}
.gallery-item {
border-radius: 12px;
border: 1px solid var(--border-color);
overflow: hidden;
background-color: rgba(0,0,0,0.2);
}
.gallery-item img {
width: 100%;
height: auto;
display: block;
}
/* Pricing / Footer CTA Section */
.pricing-cta {
padding: 56px 32px;
text-align: center;
background: linear-gradient(180deg, rgba(18, 18, 20, 0) 0%, rgba(29, 185, 84, 0.03) 100%);
}
.badge-deal {
display: inline-block;
background-color: rgba(29, 185, 84, 0.15);
color: var(--accent-hover);
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 6px 12px;
border-radius: 9999px;
margin-bottom: 16px;
}
.price-container {
margin: 16px 0 24px 0;
}
.old-price {
color: var(--text-muted);
text-decoration: line-through;
font-size: 1.25rem;
margin-right: 8px;
}
.new-price {
font-size: 2.5rem;
font-weight: 800;
color: var(--text-main);
}
.price-note {
color: var(--text-muted);
font-size: 0.875rem;
margin-top: 4px;
}
.btn-large {
display: inline-flex;
align-items: center;
gap: 12px;
background-color: var(--accent-color);
color: #000000;
text-decoration: none;
font-weight: 700;
font-size: 1.125rem;
padding: 16px 36px;
border-radius: 9999px;
box-shadow: 0 10px 20px rgba(29, 185, 84, 0.2);
transition: all 0.2s ease;
}
.btn-large:hover {
background-color: var(--accent-hover);
transform: translateY(-2px);
box-shadow: 0 12px 24px rgba(29, 185, 84, 0.3);
}
/* Footer Info */
footer {
padding: 32px;
border-top: 1px solid var(--border-color);
display: flex;
justify-content: space-between;
align-items: center;
color: var(--text-muted);
font-size: 0.875rem;
}
.footer-links a {
color: var(--text-muted);
text-decoration: none;
margin-left: 16px;
}
.footer-links a:hover {
color: var(--text-main);
}
</style>
</head>
<body>
<div class="wrapper">
<!-- Header -->
<header>
<div class="brand">
<i class="fab fa-spotify"></i>
<span>SpotiActions</span>
</div>
<a href="https://apps.apple.com/app/spotiactions/id6748419049" class="cta-header">Get App</a>
</header>
<!-- Hero -->
<section class="hero">
<h1>Bypass native limitations. Control your music library.</h1>
<p>If you've ever tried to build a custom morning routine using iOS Shortcuts and Spotify, you've hit the same wall. SpotiActions bridges the gap between your music and system-level automation.</p>
<!-- REEMPLAZAR: Imagen principal de la cabecera (Mockup general o Video Frame) -->
<img src="hero-mockup.png" alt="SpotiActions Automation Interface" class="hero-mockup">
</section>
<!-- Features -->
<section class="features">
<h2 class="section-title">🛠️ Built for Power-Users</h2>
<div class="features-grid">
<div class="feature-card">
<i class="fas fa-bolt"></i>
<h3>True Zero-Interaction Alarms</h3>
<p>By using standard iOS Automation triggers (like "When Alarm Goes Off" or "Time of Day"), SpotiActions executes your custom Spotify workflows completely hands-free while you sleep.</p>
</div>
<div class="feature-card">
<i class="fas fa-sliders-h"></i>
<h3>Advanced Playlist Logic</h3>
<p>You can pass actions to shuffle specific personalized playlists, trigger your "Liked Songs", or set up dynamic music queues directly inside your existing shortcuts.</p>
</div>
<div class="feature-card">
<i class="fas fa-mobile-alt"></i>
<h3>Native Feel & Real UI</h3>
<p>It is completely optimized for iOS. Plus, the app features a fully functional, fluid Cover Flow interface to manage your library and workflows visually.</p>
</div>
<div class="feature-card">
<i class="fas fa-shield-alt"></i>
<h3>Privacy & One-Time Purchase</h3>
<p>Built with power-user transparency in mind. Standard one-time payment, no subscriptions, and zero background data tracking.</p>
</div>
</div>
</section>
<!-- UI Showcase Gallery -->
<section class="ui-showcase">
<h2 class="section-title"><i class="fas fa-layer-group" style="color: var(--accent-color);"></i> High-Fidelity Experience</h2>
<p style="color: var(--text-muted); margin-bottom: 24px;">The Cover Flow interface you see in action is indeed the actual, fully functional UI of the app. Beautiful, responsive, and tactile.</p>
<div class="gallery-grid">
<!-- REEMPLAZAR: Screenshot del Cover Flow interactivo -->
<div class="gallery-item">
<img src="screenshot-coverflow.png" alt="Cover Flow User Interface">
</div>
<!-- REEMPLAZAR: Screenshot de la acción integrada en iOS Shortcuts -->
<div class="gallery-item">
<img src="screenshot-shortcuts.png" alt="iOS Shortcuts Integration">
</div>
</div>
</section>
<!-- Pricing / Final CTA -->
<section class="pricing-cta">
<span class="badge-deal">Special Launch Celebration — 80% OFF</span>
<h2>Take control of your music library today</h2>
<div class="price-container">
<span class="old-price">$23.99</span>
<span class="new-price">$3.99</span>
<div class="price-note">One-time payment. No subscriptions, ever.</div>
</div>
<a href="https://apps.apple.com/app/spotiactions/id6748419049" class="btn-large">
<i class="fab fa-apple"></i> Download on the App Store
</a>
</section>
<!-- Footer -->
<footer>
<span>© 2026 SpotiActions. All rights reserved.</span>
<div class="footer-links">
<a href="#">Privacy Policy</a>
<a href="#">Support</a>
</div>
</footer>
</div>
</body>
</html>