File size: 10,922 Bytes
c32f9a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Select destination UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 120px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 32px;
    box-sizing: border-box;
    font-size: 36px;
    letter-spacing: 0.5px;
  }
  .status-spacer { flex: 1; }
  .status-icons {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .status-dot {
    width: 28px; height: 28px; border-radius: 50%; background: #fff; opacity: 0.9;
  }
  .status-battery {
    width: 36px; height: 22px; border: 3px solid #fff; border-radius: 4px; position: relative;
  }
  .status-battery::after {
    content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 10px; background: #fff; border-radius: 2px;
  }

  /* App header */
  .app-header {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 28px 32px 20px 32px;
  }
  .header-row {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .title {
    font-size: 52px;
    font-weight: 700;
    color: #222;
  }
  .icon-btn {
    width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center;
  }

  /* Search field */
  .search-wrap {
    margin-top: 24px;
    padding: 0 32px;
    box-sizing: border-box;
  }
  .search-field {
    width: 1016px;
    height: 112px;
    background: #F1F3F5;
    border: 1px solid #E5E7EB;
    border-radius: 56px;
    display: flex;
    align-items: center;
    padding: 0 28px;
    box-sizing: border-box;
    gap: 22px;
  }
  .search-placeholder {
    flex: 1;
    font-size: 34px;
    color: #6B7280;
  }

  /* Choose on map row */
  .choose-row {
    margin-top: 30px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-sizing: border-box;
  }
  .choose-text {
    font-size: 36px;
    color: #2F6EF7;
    font-weight: 600;
  }
  .divider {
    margin: 22px 32px 0 32px;
    height: 2px;
    background: #E5E7EB;
  }

  /* Content area (blank white) */
  .content-area {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 1200px;
    /* stays white */
  }

  /* Keyboard mock */
  .keyboard {
    position: absolute;
    bottom: 54px;
    left: 0;
    width: 100%;
    height: 980px;
    background: #1E1E1E;
    box-sizing: border-box;
    padding: 22px 26px 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .kbd-top-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
  }
  .action-btn {
    width: 100px; height: 100px; border-radius: 50%;
    background: #2A2A2A; border: 1px solid #3A3A3A;
    display: flex; align-items: center; justify-content: center; color: #EEE; font-size: 34px; font-weight: 700;
  }

  .keys {
    display: flex; flex-direction: column; gap: 18px; padding-top: 8px;
  }
  .row {
    display: flex; justify-content: center; gap: 16px;
  }
  .key {
    height: 120px; min-width: 90px; padding: 0 16px;
    background: #2A2A2A; border: 1px solid #3A3A3A; border-radius: 24px;
    color: #EAEAEA; font-size: 44px; display: flex; align-items: center; justify-content: center;
  }
  .key.wide { min-width: 140px; }
  .key.space { flex: 1; min-width: 360px; }
  .key.light {
    background: #CCE0F9; color: #0A2540; border-color: #BBD3F3;
  }

  .kbd-bottom-row {
    display: flex; gap: 16px; padding: 0 20px;
  }

  /* Home pill */
  .home-pill {
    position: absolute;
    bottom: 12px; left: 50%; transform: translateX(-50%);
    width: 220px; height: 12px; background: #DADADA; border-radius: 8px;
  }

  /* SVG helpers */
  svg { display: block; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>10:32</div>
    <div class="status-spacer"></div>
    <div class="status-icons">
      <div class="status-dot"></div>
      <div class="status-dot" style="opacity:0.7;"></div>
      <div class="status-dot" style="opacity:0.7;"></div>
      <div class="status-battery"></div>
    </div>
  </div>

  <!-- App header -->
  <div class="app-header">
    <div class="header-row">
      <div class="icon-btn">
        <svg width="44" height="44" viewBox="0 0 24 24">
          <path d="M5 5 L19 19 M19 5 L5 19" stroke="#111" stroke-width="2.5" stroke-linecap="round"></path>
        </svg>
      </div>
      <div class="title">Select destination</div>
    </div>

    <div class="search-wrap">
      <div class="search-field">
        <!-- Search icon -->
        <svg width="44" height="44" viewBox="0 0 24 24">
          <circle cx="10" cy="10" r="7" stroke="#7B7F86" stroke-width="2" fill="none"></circle>
          <path d="M15.5 15.5 L22 22" stroke="#7B7F86" stroke-width="2" stroke-linecap="round"></path>
        </svg>
        <div class="search-placeholder">Location, landmark, or property</div>
        <!-- Mic icon -->
        <svg width="40" height="40" viewBox="0 0 24 24">
          <rect x="8" y="4" width="8" height="12" rx="4" fill="#6B7280"></rect>
          <path d="M6 11 C6 15 9 17 12 17 C15 17 18 15 18 11" stroke="#6B7280" stroke-width="2" fill="none"></path>
          <path d="M12 17 L12 21" stroke="#6B7280" stroke-width="2" stroke-linecap="round"></path>
        </svg>
      </div>
    </div>

    <div class="choose-row">
      <!-- Map pin icon -->
      <svg width="54" height="54" viewBox="0 0 24 24">
        <path d="M12 2 C8 2 5 5 5 9 C5 13 12 22 12 22 C12 22 19 13 19 9 C19 5 16 2 12 2 Z" stroke="#6B7280" stroke-width="1.8" fill="none"></path>
        <circle cx="12" cy="9" r="2.8" fill="#6B7280"></circle>
      </svg>
      <div class="choose-text">Choose on map</div>
    </div>
    <div class="divider"></div>
  </div>

  <!-- Blank content area (represents the rest of the white screen above keyboard) -->
  <div class="content-area"></div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="kbd-top-actions">
      <div class="action-btn">
        <svg width="44" height="44" viewBox="0 0 24 24">
          <rect x="3" y="3" width="7" height="7" fill="#EAEAEA"></rect>
          <rect x="14" y="3" width="7" height="7" fill="#EAEAEA"></rect>
          <rect x="3" y="14" width="7" height="7" fill="#EAEAEA"></rect>
          <rect x="14" y="14" width="7" height="7" fill="#EAEAEA"></rect>
        </svg>
      </div>
      <div class="action-btn">
        <svg width="44" height="44" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9" fill="none" stroke="#EEE" stroke-width="2"></circle>
          <circle cx="9" cy="10" r="1.8" fill="#EEE"></circle>
          <circle cx="15" cy="10" r="1.8" fill="#EEE"></circle>
          <path d="M8 15 C10 17 14 17 16 15" stroke="#EEE" stroke-width="2" fill="none" stroke-linecap="round"></path>
        </svg>
      </div>
      <div class="action-btn">GIF</div>
      <div class="action-btn">
        <svg width="44" height="44" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="8" stroke="#EEE" stroke-width="2" fill="none"></circle>
          <circle cx="12" cy="12" r="2.5" fill="#EEE"></circle>
        </svg>
      </div>
      <div class="action-btn">
        <svg width="44" height="44" viewBox="0 0 24 24">
          <text x="6" y="16" font-size="12" fill="#EEE" font-weight="700">G</text>
          <text x="14" y="16" font-size="12" fill="#EEE"></text>
        </svg>
      </div>
      <div class="action-btn">
        <svg width="44" height="44" viewBox="0 0 24 24">
          <path d="M12 3 C6 3 4 8 8 10 C9 11 9 12 8 13 C7 14 8.5 16 11 16 C14 16 18 14 18 10 C18 6 15 3 12 3 Z" fill="#EEE"></path>
          <circle cx="9" cy="9" r="1.2" fill="#1E1E1E"></circle>
          <circle cx="12" cy="8" r="1.2" fill="#1E1E1E"></circle>
          <circle cx="15" cy="10" r="1.2" fill="#1E1E1E"></circle>
        </svg>
      </div>
      <div class="action-btn">
        <svg width="40" height="40" viewBox="0 0 24 24">
          <rect x="8" y="4" width="8" height="12" rx="4" fill="#EEE"></rect>
          <path d="M6 11 C6 15 9 17 12 17 C15 17 18 15 18 11" stroke="#EEE" stroke-width="2" fill="none"></path>
          <path d="M12 17 L12 21" stroke="#EEE" stroke-width="2" stroke-linecap="round"></path>
        </svg>
      </div>
    </div>

    <div class="keys">
      <div class="row">
        <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div>
        <div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
      </div>
      <div class="row">
        <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div>
        <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
      </div>
      <div class="row">
        <div class="key wide">
          <svg width="40" height="40" viewBox="0 0 24 24">
            <path d="M12 5 L6 11 H10 V19 H14 V11 H18 Z" fill="#EAEAEA"></path>
          </svg>
        </div>
        <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
        <div class="key wide">
          <svg width="44" height="44" viewBox="0 0 24 24">
            <path d="M20 7 H9 L4 12 L9 17 H20 V7 Z" fill="#EAEAEA"></path>
            <path d="M12 10 L15 12 L12 14" stroke="#1E1E1E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
          </svg>
        </div>
      </div>
      <div class="kbd-bottom-row">
        <div class="key wide">?123</div>
        <div class="key wide">,</div>
        <div class="key wide">
          <svg width="34" height="34" viewBox="0 0 24 24">
            <circle cx="12" cy="12" r="9" stroke="#EAEAEA" stroke-width="2" fill="none"></circle>
            <path d="M12 7 L12 13" stroke="#EAEAEA" stroke-width="2" stroke-linecap="round"></path>
          </svg>
        </div>
        <div class="key space"></div>
        <div class="key wide">.</div>
        <div class="key wide light">
          <svg width="44" height="44" viewBox="0 0 24 24">
            <circle cx="10" cy="10" r="7" stroke="#0A2540" stroke-width="2" fill="none"></circle>
            <path d="M15.5 15.5 L22 22" stroke="#0A2540" stroke-width="2" stroke-linecap="round"></path>
          </svg>
        </div>
      </div>
    </div>
  </div>

  <div class="home-pill"></div>
</div>
</body>
</html>