File size: 9,485 Bytes
5501681
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Find Trails UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif; }
  #render-target {
    position: relative;
    overflow: hidden;
    width: 1080px;
    height: 2400px;
    background: #FFFFFF;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 24px;
    left: 48px;
    right: 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2F3D2E;
    font-size: 38px;
  }
  .status-left {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .sb-icon {
    width: 40px;
    height: 28px;
    border-radius: 6px;
    background: #C6C6C6;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .wifi, .battery {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Search bar */
  .search-bar {
    position: absolute;
    top: 160px;
    left: 60px;
    width: 960px;
    height: 120px;
    border: 3px solid #2F3D2E;
    border-radius: 60px;
    display: flex;
    align-items: center;
    padding: 0 36px;
    box-shadow: 0 2px 0 rgba(47,61,46,0.2);
    background: #FFFFFF;
  }
  .search-icon {
    margin-right: 24px;
  }
  .search-text {
    font-size: 44px;
    color: #2F3D2E;
    opacity: 0.85;
  }
  .cursor {
    width: 3px;
    height: 52px;
    background: #2F3D2E;
    margin-left: 10px;
    border-radius: 2px;
  }

  /* Content area */
  .content {
    position: absolute;
    top: 340px;
    left: 60px;
    right: 60px;
    color: #2F3D2E;
  }

  .row {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .icon-square {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: #EDEDEB;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .title-xl {
    font-size: 48px;
    font-weight: 600;
  }

  .section-title {
    margin-top: 80px;
    font-size: 40px;
    color: #2F3D2E;
    opacity: 0.85;
  }

  .list-item {
    margin-top: 44px;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .city-block .city-name {
    font-size: 52px;
    color: #2F3D2E;
    font-weight: 600;
    line-height: 1.1;
  }
  .city-block .city-sub {
    margin-top: 8px;
    font-size: 36px;
    color: #6E766E;
  }

  /* Keyboard */
  .keyboard {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 110px;
    width: 100%;
    height: 900px;
    background: #F2ECF7;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0 -2px 0 rgba(0,0,0,0.06) inset;
    padding: 28px 28px 20px;
  }
  .kb-row {
    display: grid;
    grid-gap: 18px;
    margin-bottom: 22px;
  }
  .kb-row.row1 { grid-template-columns: repeat(10, 1fr); }
  .kb-row.row2 { grid-template-columns: repeat(9, 1fr); }
  .kb-row.row3 { grid-template-columns: 1.2fr repeat(7, 1fr) 1.2fr; }
  .kb-row.row4 { grid-template-columns: 1.3fr 0.9fr 1fr 5fr 0.9fr 1.3fr; }

  .key {
    background: #FFFFFF;
    color: #2F3D2E;
    border-radius: 18px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  }
  .key.pill {
    background: #D9D2F3;
    font-weight: 600;
  }
  .key.icon {
    background: #FFFFFF;
  }
  .space {
    justify-content: center;
    color: #6E766E;
    font-size: 40px;
  }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 236px;
    height: 10px;
    background: #BDBDBD;
    border-radius: 8px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="status-left">
      <div>8:21</div>
      <div class="status-icons">
        <div class="sb-icon"></div>
        <div class="sb-icon" style="width:52px;"></div>
      </div>
    </div>
    <div class="status-right">
      <!-- Simple WiFi icon -->
      <svg class="wifi" width="48" height="36" viewBox="0 0 48 36">
        <path d="M4 10c9-8 31-8 40 0M12 18c6-6 18-6 24 0M20 26c3-3 9-3 12 0" fill="none" stroke="#2F3D2E" stroke-width="3" stroke-linecap="round"/>
        <circle cx="26" cy="30" r="2.6" fill="#2F3D2E"/>
      </svg>
      <!-- Battery icon -->
      <svg class="battery" width="48" height="24" viewBox="0 0 48 24">
        <rect x="2" y="4" width="38" height="16" rx="3" ry="3" stroke="#2F3D2E" stroke-width="3" fill="none"/>
        <rect x="42" y="8" width="4" height="8" fill="#2F3D2E"/>
        <rect x="6" y="8" width="28" height="8" fill="#2F3D2E"/>
      </svg>
    </div>
  </div>

  <!-- Search Bar -->
  <div class="search-bar">
    <div class="search-icon">
      <svg width="56" height="56" viewBox="0 0 48 48">
        <path d="M30 10 L18 24 L30 38" fill="none" stroke="#2F3D2E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
        <line x1="18" y1="24" x2="42" y2="24" stroke="#2F3D2E" stroke-width="4" stroke-linecap="round"/>
      </svg>
    </div>
    <div class="search-text">Find trails</div>
    <div class="cursor"></div>
  </div>

  <!-- Content -->
  <div class="content">
    <div class="row">
      <div class="icon-square">
        <!-- Nearby (paper plane) icon -->
        <svg width="64" height="64" viewBox="0 0 64 64">
          <path d="M10 30 L54 12 L42 52 L30 36 L18 44 Z" fill="none" stroke="#2F3D2E" stroke-width="3" stroke-linejoin="round"/>
        </svg>
      </div>
      <div class="title-xl">Nearby</div>
    </div>

    <div class="section-title">Recent searches</div>

    <!-- Seattle -->
    <div class="list-item">
      <div class="icon-square">
        <!-- Flag icon -->
        <svg width="64" height="64" viewBox="0 0 64 64">
          <path d="M18 12 V52" stroke="#2F3D2E" stroke-width="3" stroke-linecap="round"/>
          <path d="M20 14 H44 L38 24 H20 Z" fill="none" stroke="#2F3D2E" stroke-width="3" stroke-linejoin="round"/>
        </svg>
      </div>
      <div class="city-block">
        <div class="city-name">Seattle</div>
        <div class="city-sub">Washington, United States</div>
      </div>
    </div>

    <!-- Detroit -->
    <div class="list-item">
      <div class="icon-square">
        <!-- Flag icon -->
        <svg width="64" height="64" viewBox="0 0 64 64">
          <path d="M18 12 V52" stroke="#2F3D2E" stroke-width="3" stroke-linecap="round"/>
          <path d="M20 14 H44 L38 24 H20 Z" fill="none" stroke="#2F3D2E" stroke-width="3" stroke-linejoin="round"/>
        </svg>
      </div>
      <div class="city-block">
        <div class="city-name">Detroit</div>
        <div class="city-sub">Michigan, United States</div>
      </div>
    </div>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="kb-row row1">
      <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="kb-row row2">
      <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="kb-row row3">
      <div class="key pill">
        <!-- Shift icon -->
        <svg width="40" height="40" viewBox="0 0 48 48">
          <path d="M24 8 L40 24 H30 V40 H18 V24 H8 Z" fill="none" stroke="#2F3D2E" stroke-width="3" stroke-linejoin="round"/>
        </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 pill">
        <!-- Backspace icon -->
        <svg width="40" height="40" viewBox="0 0 48 48">
          <path d="M14 12 L6 24 L14 36 H40 V12 Z" fill="none" stroke="#2F3D2E" stroke-width="3"/>
          <path d="M22 18 L32 28 M32 18 L22 28" stroke="#2F3D2E" stroke-width="3" stroke-linecap="round"/>
        </svg>
      </div>
    </div>
    <div class="kb-row row4">
      <div class="key pill">?123</div>
      <div class="key">,</div>
      <div class="key icon">
        <!-- Emoji -->
        <svg width="40" height="40" viewBox="0 0 48 48">
          <circle cx="24" cy="24" r="18" fill="none" stroke="#2F3D2E" stroke-width="3"/>
          <circle cx="18" cy="20" r="2.2" fill="#2F3D2E"/>
          <circle cx="30" cy="20" r="2.2" fill="#2F3D2E"/>
          <path d="M16 28 C20 32 28 32 32 28" stroke="#2F3D2E" stroke-width="3" fill="none" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="key space">space</div>
      <div class="key">.</div>
      <div class="key pill">
        <!-- Search key -->
        <svg width="40" height="40" viewBox="0 0 48 48">
          <circle cx="20" cy="20" r="10" fill="none" stroke="#2F3D2E" stroke-width="3"/>
          <line x1="30" y1="30" x2="40" y2="40" stroke="#2F3D2E" stroke-width="3" stroke-linecap="round"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Home indicator -->
  <div class="home-indicator"></div>
</div>
</body>
</html>