-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappstore-slides.html
More file actions
338 lines (296 loc) · 8.03 KB
/
appstore-slides.html
File metadata and controls
338 lines (296 loc) · 8.03 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PocketCode App Store Screenshots</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #111;
display: flex;
flex-direction: column;
align-items: center;
gap: 80px;
padding: 80px 0;
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', system-ui, sans-serif;
}
.slide {
width: 1290px;
height: 2796px;
position: relative;
overflow: hidden;
flex-shrink: 0;
}
/* Background */
.slide-bg {
position: absolute;
inset: 0;
background: #08080D;
}
/* Subtle dot pattern */
.slide-bg::before {
content: '';
position: absolute;
inset: 0;
background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
background-size: 32px 32px;
}
/* Accent glow behind phone */
.accent-glow {
position: absolute;
bottom: 200px;
left: 50%;
transform: translateX(-50%);
width: 900px;
height: 900px;
border-radius: 50%;
filter: blur(120px);
opacity: 0.12;
pointer-events: none;
}
.slide-1 .accent-glow { background: #C586C0; }
.slide-2 .accent-glow { background: #007ACC; }
.slide-3 .accent-glow { background: #4CAF50; }
/* Top line accent */
.top-accent {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
}
.slide-1 .top-accent { background: linear-gradient(90deg, transparent, #C586C0, transparent); }
.slide-2 .top-accent { background: linear-gradient(90deg, transparent, #007ACC, transparent); }
.slide-3 .top-accent { background: linear-gradient(90deg, transparent, #4CAF50, transparent); }
/* Brand mark */
.brand {
position: absolute;
top: 120px;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
gap: 16px;
z-index: 10;
}
.brand img {
width: 56px;
height: 56px;
border-radius: 13px;
}
.brand-name {
font-size: 32px;
font-weight: 600;
color: rgba(255,255,255,0.5);
letter-spacing: -0.5px;
}
/* Text content */
.text-content {
position: absolute;
top: 280px;
left: 0;
right: 0;
text-align: center;
z-index: 10;
padding: 0 100px;
}
.headline {
font-size: 108px;
font-weight: 800;
color: #FFFFFF;
letter-spacing: -3px;
line-height: 1.12;
margin-bottom: 48px;
}
.slide-1 .headline-accent { color: #D4A0D0; }
.slide-2 .headline-accent { color: #5AADEE; }
.slide-3 .headline-accent { color: #6FCF73; }
.subtitle {
font-size: 44px;
font-weight: 400;
color: rgba(255,255,255,0.85);
line-height: 1.55;
letter-spacing: -0.5px;
}
/* Feature pill */
.pill {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 28px;
font-weight: 600;
letter-spacing: 0.5px;
padding: 14px 32px;
border-radius: 100px;
margin-bottom: 52px;
}
.slide-1 .pill { background: rgba(197,134,192,0.12); color: #D4A0D0; border: 1px solid rgba(197,134,192,0.25); }
.slide-2 .pill { background: rgba(0,122,204,0.12); color: #5AADEE; border: 1px solid rgba(0,122,204,0.25); }
.slide-3 .pill { background: rgba(76,175,80,0.12); color: #6FCF73; border: 1px solid rgba(76,175,80,0.25); }
.pill-dot {
width: 10px;
height: 10px;
border-radius: 50%;
}
.slide-1 .pill-dot { background: #C586C0; }
.slide-2 .pill-dot { background: #007ACC; }
.slide-3 .pill-dot { background: #4CAF50; }
/* Phone mockup */
.phone-container {
position: absolute;
bottom: 80px;
left: 50%;
transform: translateX(-50%);
z-index: 10;
}
.phone {
width: 700px;
padding: 18px 16px;
background: #1A1A1E;
border-radius: 64px;
border: 2.5px solid #3A3A40;
box-shadow:
0 60px 120px rgba(0,0,0,0.7),
0 0 0 1px rgba(255,255,255,0.05),
inset 0 1px 0 rgba(255,255,255,0.08);
position: relative;
}
/* No CSS dynamic island - real screenshots already have one */
/* Side buttons */
.phone::after {
content: '';
position: absolute;
right: -4px;
top: 200px;
width: 4px;
height: 80px;
background: #2E2E32;
border-radius: 0 3px 3px 0;
}
.phone-left-buttons {
position: absolute;
left: -4px;
top: 160px;
width: 4px;
height: 50px;
background: #2E2E32;
border-radius: 3px 0 0 3px;
box-shadow: 0 60px 0 #2E2E32, 0 120px 0 #2E2E32;
}
.phone-screen {
border-radius: 48px;
overflow: hidden;
background: #1E1E1E;
line-height: 0;
}
.phone-screen img {
width: 100%;
height: auto;
display: block;
}
/* Per-slide phone shadow glow */
.slide-1 .phone {
box-shadow:
0 60px 120px rgba(0,0,0,0.7),
0 0 80px rgba(197,134,192,0.12),
0 0 0 1px rgba(255,255,255,0.05),
inset 0 1px 0 rgba(255,255,255,0.08);
}
.slide-2 .phone {
box-shadow:
0 60px 120px rgba(0,0,0,0.7),
0 0 80px rgba(0,122,204,0.12),
0 0 0 1px rgba(255,255,255,0.05),
inset 0 1px 0 rgba(255,255,255,0.08);
}
.slide-3 .phone {
box-shadow:
0 60px 120px rgba(0,0,0,0.7),
0 0 80px rgba(76,175,80,0.12),
0 0 0 1px rgba(255,255,255,0.05),
inset 0 1px 0 rgba(255,255,255,0.08);
}
</style>
</head>
<body>
<!-- Slide 1: AI 에이전트 -->
<div class="slide slide-1" id="slide-1">
<div class="slide-bg"></div>
<div class="top-accent"></div>
<div class="accent-glow"></div>
<div class="brand">
<img src="assets/app-icon.png" alt="PocketCode" />
<span class="brand-name">PocketCode</span>
</div>
<div class="text-content">
<div class="pill">
<span class="pill-dot"></span>
AI CODING AGENT
</div>
<h1 class="headline">AI 에이전트,<br/><span class="headline-accent">그대로</span></h1>
<p class="subtitle">Claude, Codex, Gemini 같은<br/>AI 코딩 에이전트를<br/>모바일에서 바로 사용하세요</p>
</div>
<div class="phone-container">
<div class="phone">
<div class="phone-left-buttons"></div>
<div class="phone-screen">
<img src="assets/screenshot-editor.png" alt="Claude Code on mobile" />
</div>
</div>
</div>
</div>
<!-- Slide 2: 호스트 관리 -->
<div class="slide slide-2" id="slide-2">
<div class="slide-bg"></div>
<div class="top-accent"></div>
<div class="accent-glow"></div>
<div class="brand">
<img src="assets/app-icon.png" alt="PocketCode" />
<span class="brand-name">PocketCode</span>
</div>
<div class="text-content">
<div class="pill">
<span class="pill-dot"></span>
HOST MANAGEMENT
</div>
<h1 class="headline">여러 서버를<br/><span class="headline-accent">한눈에 관리</span></h1>
<p class="subtitle">VS Code Tunnel과 serve-web<br/>두 가지 연결 방식을 지원합니다</p>
</div>
<div class="phone-container">
<div class="phone">
<div class="phone-left-buttons"></div>
<div class="phone-screen">
<img src="assets/screenshot-hosts.png" alt="Host management" />
</div>
</div>
</div>
</div>
<!-- Slide 3: 설치 없이 바로 연결 -->
<div class="slide slide-3" id="slide-3">
<div class="slide-bg"></div>
<div class="top-accent"></div>
<div class="accent-glow"></div>
<div class="brand">
<img src="assets/app-icon.png" alt="PocketCode" />
<span class="brand-name">PocketCode</span>
</div>
<div class="text-content">
<div class="pill">
<span class="pill-dot"></span>
ZERO INSTALL
</div>
<h1 class="headline">설치 없이<br/><span class="headline-accent">바로 연결</span></h1>
<p class="subtitle">데스크톱에 별도 프로그램이<br/>필요 없습니다<br/>VS Code 기본 터널 기능만으로 연결</p>
</div>
<div class="phone-container">
<div class="phone">
<div class="phone-left-buttons"></div>
<div class="phone-screen">
<img src="assets/screenshot-vscode.png" alt="VS Code on mobile" />
</div>
</div>
</div>
</div>
</body>
</html>