File size: 10,182 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1">
<title>Fix & manage - Mock UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
  #render-target {
    width: 1080px; height: 2400px;
    position: relative; overflow: hidden;
    background: #0b1f21;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    color: #d9e7e6;
  }

  /* Status bar */
  .status-bar {
    position: absolute; left: 0; top: 0; width: 100%; height: 120px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; color: #e9f6f4; font-size: 38px; letter-spacing: 1px;
  }
  .status-icons { display: flex; align-items: center; gap: 26px; }
  .status-right { display: flex; align-items: center; gap: 26px; font-size: 34px; }
  .status-icon svg { width: 40px; height: 40px; stroke: #cfe7e5; fill: none; stroke-width: 3; }

  /* Header */
  .header-area {
    position: absolute; left: 56px; top: 180px; right: 56px;
  }
  .title {
    font-size: 78px; font-weight: 500; margin: 0 0 36px 0; color: #cfe7e5;
  }
  .avatar {
    position: absolute; right: 0; top: 0;
    width: 96px; height: 96px; border-radius: 50%;
    background: #d9772a; display: flex; align-items: center; justify-content: center;
    font-weight: 600; color: #fff; font-size: 44px;
  }

  /* Cards grid */
  .cards {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 36px; row-gap: 34px;
  }
  .card {
    height: 180px; border-radius: 36px;
    background: #0e2a2d; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    display: flex; align-items: center; padding: 0 40px; color: #d6e6e5;
  }
  .card .icon {
    width: 76px; height: 76px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 28px;
  }
  .icon svg { width: 64px; height: 64px; stroke: #71d6b9; fill: none; stroke-width: 6; }
  .card .label { font-size: 44px; }

  /* Single wide card alignment tweak */
  .cards .single { grid-column: 1; }

  /* Section: Other tools */
  .section {
    margin-top: 68px;
  }
  .section-title { color: #a6b7b5; font-size: 38px; margin-bottom: 16px; }
  .list {
    margin-top: 10px;
    border-radius: 16px;
  }
  .list-item {
    display: flex; align-items: center;
    height: 130px; padding: 0 56px; color: #d6e6e5; font-size: 44px;
    position: relative;
  }
  .list-item + .list-item { border-top: 2px solid #203537; }
  .list .li-icon {
    width: 64px; height: 64px; margin-right: 26px; display: flex; align-items: center; justify-content: center;
  }
  .li-icon svg { width: 56px; height: 56px; stroke: #cfe7e5; fill: none; stroke-width: 6; }

  /* Bottom navigation */
  .bottom-nav {
    position: absolute; left: 0; bottom: 0; width: 100%; height: 220px;
    background: #0d2325; border-top: 1px solid #112a2c;
    display: flex; align-items: center; justify-content: space-around;
    padding-bottom: 40px;
  }
  .nav-item {
    width: 30%; text-align: center; color: #bcd3d1;
  }
  .nav-item .nav-icon { display: inline-flex; align-items: center; justify-content: center; width: 90px; height: 90px; border-radius: 24px; }
  .nav-item .label { display: block; margin-top: 18px; font-size: 36px; }
  .nav-icon svg { width: 60px; height: 60px; stroke: #cfe7e5; fill: none; stroke-width: 6; }
  .nav-item.active .nav-icon {
    background: #245a4a; color: #fff;
  }
  .nav-item.active .nav-icon svg { stroke: #ffffff; }
  .gesture {
    position: absolute; left: 50%; transform: translateX(-50%);
    bottom: 16px; width: 240px; height: 14px; border-radius: 7px; background: #e0e0e0; opacity: 0.35;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="status-icons">
      <div style="font-weight: 500;">12:21</div>
      <span class="status-icon">
        <!-- Runner icon (simple man) -->
        <svg viewBox="0 0 24 24"><path d="M8 18l4-4 2 6M12 10l-3 3M15 6a2 2 0 1 1-3 0 2 2 0 0 1 3 0z"/></svg>
      </span>
      <span class="status-icon">
        <!-- Flower -->
        <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="2"/><path d="M12 2v6M12 16v6M2 12h6M16 12h6M5 5l4 4M15 15l4 4M5 19l4-4M15 9l4-4"/></svg>
      </span>
      <span class="status-icon">
        <!-- Check -->
        <svg viewBox="0 0 24 24"><path d="M4 12l6 6L20 6"/></svg>
      </span>
      <span class="status-icon">
        <!-- Shield -->
        <svg viewBox="0 0 24 24"><path d="M12 3l8 3v6c0 5-4 8-8 9-4-1-8-4-8-9V6l8-3z"/></svg>
      </span>
      <span class="status-icon">
        <!-- Dot -->
        <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="#cfe7e5" stroke="none"/></svg>
      </span>
    </div>
    <div class="status-right">
      <span class="status-icon">
        <!-- WiFi -->
        <svg viewBox="0 0 24 24"><path d="M2 8c5-5 15-5 20 0M5 11c3-3 11-3 14 0M8 14c2-2 6-2 8 0M12 18l2 2-2 2-2-2 2-2z"/></svg>
      </span>
      <span class="status-icon">
        <!-- Battery -->
        <svg viewBox="0 0 28 24"><rect x="2" y="6" width="20" height="12" rx="2"/><rect x="22" y="9" width="3" height="6"/></svg>
      </span>
      <span>100%</span>
    </div>
  </div>

  <!-- Header -->
  <div class="header-area">
    <h1 class="title">Fix &amp; manage</h1>
    <div class="avatar">R</div>

    <!-- Cards Grid -->
    <div class="cards">
      <div class="card">
        <div class="icon">
          <!-- Tools (merge & fix) -->
          <svg viewBox="0 0 24 24">
            <path d="M4 16l6-6M10 18l-4-4M12 6l8 8M17 5l2 2M5 17l2 2"/>
          </svg>
        </div>
        <div class="label">Merge &amp; fix</div>
      </div>

      <div class="card">
        <div class="icon">
          <!-- Reminders (note) -->
          <svg viewBox="0 0 24 24">
            <path d="M6 4h9l3 3v13H6z"/>
            <path d="M15 4v3h3"/>
            <path d="M8 11h8M8 15h6"/>
          </svg>
        </div>
        <div class="label">Reminders</div>
      </div>

      <div class="card">
        <div class="icon">
          <!-- Restore contacts (cloud up) -->
          <svg viewBox="0 0 24 24">
            <path d="M6 16a5 5 0 1 1 9-6 4 4 0 1 1 3 6H6z"/>
            <path d="M12 14v-4M10 12l2-2 2 2"/>
          </svg>
        </div>
        <div class="label">Restore contacts</div>
      </div>

      <div class="card">
        <div class="icon">
          <!-- Import from file (download) -->
          <svg viewBox="0 0 24 24">
            <path d="M12 4v10"/>
            <path d="M9 11l3 3 3-3"/>
            <path d="M4 20h16"/>
          </svg>
        </div>
        <div class="label">Import from file</div>
      </div>

      <div class="card">
        <div class="icon">
          <!-- Export to file (upload) -->
          <svg viewBox="0 0 24 24">
            <path d="M12 20V10"/>
            <path d="M9 13l3-3 3 3"/>
            <path d="M4 4h16"/>
          </svg>
        </div>
        <div class="label">Export to file</div>
      </div>

      <div class="card">
        <div class="icon">
          <!-- Trash -->
          <svg viewBox="0 0 24 24">
            <path d="M5 7h14M10 7V5h4v2M7 7l1 12h8l1-12"/>
          </svg>
        </div>
        <div class="label">Trash</div>
      </div>

      <div class="card single">
        <div class="icon">
          <!-- Settings (gear) -->
          <svg viewBox="0 0 24 24">
            <circle cx="12" cy="12" r="3"/>
            <path d="M12 2v3M12 19v3M2 12h3M19 12h3M4.5 4.5l2.1 2.1M17.4 17.4l2.1 2.1M4.5 19.5l2.1-2.1M17.4 6.6l2.1-2.1"/>
          </svg>
        </div>
        <div class="label">Settings</div>
      </div>
    </div>

    <!-- Other tools -->
    <div class="section">
      <div class="section-title">Other tools</div>
      <div class="list">

        <div class="list-item">
          <div class="li-icon">
            <!-- Emergency (star of life) -->
            <svg viewBox="0 0 24 24">
              <path d="M12 2v20M2 12h20M5 5l14 14M19 5L5 19"/>
            </svg>
          </div>
          <div>Emergency contacts</div>
        </div>

        <div class="list-item">
          <div class="li-icon">
            <!-- Household contacts (home) -->
            <svg viewBox="0 0 24 24">
              <path d="M3 11l9-7 9 7v9H3z"/>
              <path d="M9 20v-6h6v6"/>
            </svg>
          </div>
          <div>Household contacts</div>
        </div>

        <div class="list-item">
          <div class="li-icon">
            <!-- Family group (home outline) -->
            <svg viewBox="0 0 24 24">
              <path d="M4 12l8-6 8 6v8H4z"/>
              <path d="M10 20v-5h4v5"/>
            </svg>
          </div>
          <div>Family group</div>
        </div>

        <div class="list-item">
          <div class="li-icon">
            <!-- Blocked numbers (no entry) -->
            <svg viewBox="0 0 24 24">
              <circle cx="12" cy="12" r="9"/>
              <path d="M7 7l10 10"/>
            </svg>
          </div>
          <div>Blocked numbers</div>
        </div>

      </div>
    </div>
  </div>

  <!-- Bottom Navigation -->
  <div class="bottom-nav">
    <div class="nav-item">
      <div class="nav-icon">
        <!-- Contacts (person) -->
        <svg viewBox="0 0 24 24">
          <circle cx="12" cy="8" r="4"/>
          <path d="M4 20c0-4 4-6 8-6s8 2 8 6"/>
        </svg>
      </div>
      <span class="label">Contacts</span>
    </div>
    <div class="nav-item">
      <div class="nav-icon">
        <!-- Highlights (star) -->
        <svg viewBox="0 0 24 24">
          <path d="M12 3l3 6 6 .9-4.5 4.3 1.1 6.5L12 17l-5.6 3.7 1.1-6.5L3 9.9 9 9z"/>
        </svg>
      </div>
      <span class="label">Highlights</span>
    </div>
    <div class="nav-item active">
      <div class="nav-icon">
        <!-- Fix & manage (wrench) -->
        <svg viewBox="0 0 24 24">
          <path d="M14 2l2 2-3 3 3 3-2 2-3-3-3 3-2-2 3-3-3-3 2-2 3 3z"/>
        </svg>
      </div>
      <span class="label">Fix &amp; manage</span>
    </div>
    <div class="gesture"></div>
  </div>

</div>
</body>
</html>