File size: 10,399 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Fix & manage - Mock</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
  #render-target {
    width: 1080px; height: 2400px;
    position: relative; overflow: hidden;
    background: #0f1e21;
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    color: #cfe1dd;
  }

  /* Status bar */
  .status-bar {
    position: absolute; left: 0; top: 0; width: 100%; height: 120px;
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    color: #e9f0ef; font-size: 40px; letter-spacing: 0.5px;
  }
  .status-icons { display: flex; align-items: center; gap: 26px; }
  .status-icons svg { opacity: 0.9; }

  /* Profile avatar */
  .avatar {
    position: absolute; right: 48px; top: 170px;
    width: 96px; height: 96px; border-radius: 50%;
    background: #a55c23; color: #f4e7d6;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 46px;
  }

  /* Title */
  .title {
    position: absolute; left: 56px; top: 220px;
    font-size: 64px; font-weight: 600; color: #b9c9c6;
  }

  /* Actions grid */
  .actions {
    position: absolute; left: 40px; right: 40px; top: 360px;
    display: flex; flex-wrap: wrap; gap: 40px;
  }
  .action-card {
    width: 460px; height: 170px;
    background: #132a2d;
    border: 1px solid #0c2023;
    border-radius: 28px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
    display: flex; align-items: center; padding: 28px;
    color: #9fc5b4;
  }
  .action-card svg { width: 60px; height: 60px; margin-right: 22px; }
  .action-card .label { font-size: 36px; color: #9fc5b4; }

  /* Lower sheet */
  .sheet {
    position: absolute; left: 0; right: 0; top: 980px; bottom: 120px;
    background: #102628;
    border-top-left-radius: 48px; border-top-right-radius: 48px;
    padding: 40px 40px 140px 40px;
  }
  .sheet h2 {
    margin: 10px 16px 30px 16px;
    font-size: 40px; color: #b9c9c6; font-weight: 600;
  }

  /* Account rows */
  .row {
    height: 140px; border-radius: 16px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px 0 16px; margin: 6px 6px;
  }
  .row-left { display: flex; align-items: center; }
  .chip {
    width: 100px; height: 100px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 44px; font-weight: 700; color: #eef5f4;
    margin-right: 24px;
  }
  .chip.c-teal { background: #2f8c82; }
  .chip.c-purple { background: linear-gradient(135deg, #6a2ad6, #8f2ac9); }
  .chip.c-pink { background: #d25176; }
  .chip.c-orange { background: #c6712b; }
  .chip.c-gray { background: #b7c0c4; color: #243336; }
  .text-block { display: flex; flex-direction: column; }
  .primary { font-size: 36px; color: #dbe8e5; }
  .secondary { font-size: 28px; color: #92a4a0; margin-top: 4px; }

  .row .info {
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .row .info svg { width: 34px; height: 34px; }

  /* Device note lines that wrap */
  .device-note { max-width: 740px; }

  /* Add another account */
  .add-account {
    height: 120px; margin-top: 16px;
    display: flex; align-items: center; gap: 22px; padding-left: 24px;
  }
  .add-account svg { width: 54px; height: 54px; }
  .add-account span { font-size: 40px; color: #cfe1dd; }

  /* Home indicator */
  .home-pill {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    width: 360px; height: 12px; border-radius: 12px; background: #c7c7c7; opacity: 0.85;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>12:22</div>
    <div class="status-icons">
      <!-- simple status icons -->
      <svg width="36" height="36" viewBox="0 0 24 24" fill="none">
        <circle cx="5" cy="12" r="2" fill="#e9f0ef"/>
        <circle cx="12" cy="12" r="2" fill="#e9f0ef"/>
        <circle cx="19" cy="12" r="2" fill="#e9f0ef"/>
      </svg>
      <svg width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="#e9f0ef" stroke-width="2">
        <path d="M3 12c3-4 6-6 9-6s6 2 9 6"/>
        <path d="M6 12c2-3 4-4 6-4s4 1 6 4"/>
        <path d="M9 12c1-2 2-2 3-2s2 0 3 2"/>
      </svg>
      <svg width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="#e9f0ef" stroke-width="2">
        <rect x="1" y="7" width="16" height="10" rx="2" />
        <path d="M19 10v4" />
      </svg>
      <span style="font-size: 34px;">100%</span>
    </div>
  </div>

  <!-- Profile avatar -->
  <div class="avatar">R</div>

  <!-- Title -->
  <div class="title">Fix &amp; manage</div>

  <!-- Actions grid -->
  <div class="actions">
    <!-- Merge & fix -->
    <div class="action-card">
      <svg viewBox="0 0 24 24" stroke="#79c9a9" stroke-width="1.8" fill="none" stroke-linecap="round" stroke-linejoin="round">
        <path d="M3 21l6-6M7 7l10 10" />
        <path d="M15 3l6 6M6 6l3-3" />
      </svg>
      <div class="label">Merge &amp; fix</div>
    </div>
    <!-- Reminders -->
    <div class="action-card">
      <svg viewBox="0 0 24 24" stroke="#79c9a9" stroke-width="1.8" fill="none" stroke-linecap="round" stroke-linejoin="round">
        <rect x="5" y="3" width="14" height="18" rx="2"/>
        <path d="M8 8h8M8 12h8M8 16h8"/>
      </svg>
      <div class="label">Reminders</div>
    </div>
    <!-- Restore contacts -->
    <div class="action-card">
      <svg viewBox="0 0 24 24" stroke="#79c9a9" stroke-width="1.8" fill="none" stroke-linecap="round" stroke-linejoin="round">
        <path d="M7 17h10a4 4 0 0 0 0-8 5 5 0 0 0-9-1 4 4 0 0 0-1 9z"/>
        <path d="M12 13v-4M12 13l-3-3"/>
      </svg>
      <div class="label">Restore contacts</div>
    </div>
    <!-- Import from file -->
    <div class="action-card">
      <svg viewBox="0 0 24 24" stroke="#79c9a9" stroke-width="1.8" fill="none" stroke-linecap="round" stroke-linejoin="round">
        <path d="M6 20h12a2 2 0 0 0 2-2V8l-5-5H6a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z"/>
        <path d="M12 11v6M9 14l3 3 3-3"/>
      </svg>
      <div class="label">Import from file</div>
    </div>
    <!-- Export to file -->
    <div class="action-card">
      <svg viewBox="0 0 24 24" stroke="#79c9a9" stroke-width="1.8" fill="none" stroke-linecap="round" stroke-linejoin="round">
        <path d="M6 20h12a2 2 0 0 0 2-2V8l-5-5H6a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z"/>
        <path d="M12 17v-6M15 14l-3-3-3 3"/>
      </svg>
      <div class="label">Export to file</div>
    </div>
    <!-- Trash -->
    <div class="action-card">
      <svg viewBox="0 0 24 24" stroke="#79c9a9" stroke-width="1.8" fill="none" stroke-linecap="round" stroke-linejoin="round">
        <path d="M4 7h16M9 7V5h6v2"/>
        <rect x="6" y="7" width="12" height="14" rx="2"/>
        <path d="M10 11v6M14 11v6"/>
      </svg>
      <div class="label">Trash</div>
    </div>
  </div>

  <!-- Lower sheet -->
  <div class="sheet">
    <h2>Save imported contacts to</h2>

    <!-- Row 1 -->
    <div class="row">
      <div class="row-left">
        <div class="chip c-teal">C</div>
        <div class="text-block">
          <div class="primary">dbwscratch.test.id4@gmail.com</div>
          <div class="secondary">Google Contacts</div>
        </div>
      </div>
      <div class="info">
        <svg viewBox="0 0 24 24" stroke="#9fb1ad" stroke-width="1.8" fill="none">
          <circle cx="12" cy="12" r="10"/>
          <path d="M12 8v8M12 6v0"/>
        </svg>
      </div>
    </div>

    <!-- Row 2 -->
    <div class="row">
      <div class="row-left">
        <div class="chip c-purple">A</div>
        <div class="text-block">
          <div class="primary">andreaswagner98b@gmail.com</div>
          <div class="secondary">Google Contacts</div>
        </div>
      </div>
      <div class="info">
        <svg viewBox="0 0 24 24" stroke="#9fb1ad" stroke-width="1.8" fill="none">
          <circle cx="12" cy="12" r="10"/>
          <path d="M12 8v8M12 6v0"/>
        </svg>
      </div>
    </div>

    <!-- Row 3 -->
    <div class="row">
      <div class="row-left">
        <div class="chip c-pink">C</div>
        <div class="text-block">
          <div class="primary">clarawagner98b@gmail.com</div>
          <div class="secondary">Google Contacts</div>
        </div>
      </div>
      <div class="info">
        <svg viewBox="0 0 24 24" stroke="#9fb1ad" stroke-width="1.8" fill="none">
          <circle cx="12" cy="12" r="10"/>
          <path d="M12 8v8M12 6v0"/>
        </svg>
      </div>
    </div>

    <!-- Row 4 -->
    <div class="row">
      <div class="row-left">
        <div class="chip c-orange">R</div>
        <div class="text-block">
          <div class="primary">richardwegnar@gmail.com</div>
          <div class="secondary">Google Contacts</div>
        </div>
      </div>
      <div class="info">
        <svg viewBox="0 0 24 24" stroke="#9fb1ad" stroke-width="1.8" fill="none">
          <circle cx="12" cy="12" r="10"/>
          <path d="M12 8v8M12 6v0"/>
        </svg>
      </div>
    </div>

    <!-- Device Row -->
    <div class="row">
      <div class="row-left">
        <div class="chip c-gray">
          <svg viewBox="0 0 24 24" width="44" height="44" fill="none" stroke="#2a3c3f" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
            <rect x="7" y="3" width="10" height="18" rx="2"/>
            <path d="M10 3h4M10 21h4"/>
          </svg>
        </div>
        <div class="text-block device-note">
          <div class="primary">Device</div>
          <div class="secondary">Contacts may not sync or be available on your other devices</div>
        </div>
      </div>
      <div class="info"></div>
    </div>

    <!-- Add another account -->
    <div class="add-account">
      <svg viewBox="0 0 24 24" fill="none" stroke="#cfe1dd" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
        <circle cx="8" cy="8" r="4"/>
        <path d="M2 20c0-4 4-6 8-6s8 2 8 6"/>
        <path d="M19 8v6M16 11h6"/>
      </svg>
      <span>Add another account</span>
    </div>
  </div>

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