File size: 6,957 Bytes
fa881a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<html>
<head>
<meta charset="UTF-8">
<title>Settings UI</title>
<style>
  body {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #000000;
    color: #ffffff;
  }

  /* Top marketing banner */
  .banner {
    position: relative;
    width: 100%;
    height: 560px;
    background: linear-gradient(90deg, #f4d6a8 0%, #f0b6ad 50%, #efb0b3 100%);
    padding: 40px 60px 60px;
    box-sizing: border-box;
  }
  .banner-text {
    font-size: 44px;
    line-height: 60px;
    color: #2b2b2b;
    letter-spacing: 0.2px;
    margin-top: 30px;
  }
  .cta {
    margin-top: 40px;
    width: 620px;
    height: 128px;
    background: #3a976a;
    border-radius: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 44px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }

  /* Sections */
  .section {
    padding: 36px 60px 0 60px;
  }
  .sec-title {
    font-size: 38px;
    color: #bdbdbd;
    letter-spacing: 6px;
    margin: 14px 0 28px;
  }

  /* Rows */
  .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    border-bottom: 1px solid #1c1c1c;
  }
  .row-content {
    display: flex;
    align-items: center;
    gap: 34px;
  }
  .label {
    font-size: 56px;
  }
  .subtle {
    color: #9e9e9e;
    font-size: 54px;
  }

  /* Pills and toggles */
  .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 26px 40px;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    background: #f6d255;
    border-radius: 64px;
  }

  .toggle {
    width: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .tog-dot {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #9c9c9c;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15);
  }

  /* Icons */
  .icon {
    width: 96px;
    height: 96px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .icon svg {
    width: 56px;
    height: 56px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Status overlay simulation */
  .status-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .status-time {
    color: #ffffff;
    font-size: 42px;
    font-weight: 600;
  }
  .status-icons {
    display: flex;
    gap: 24px;
  }
  .status-dot {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.9;
  }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 14px;
    background: #e6e6e6;
    border-radius: 14px;
    opacity: 0.7;
  }
</style>
</head>
<body>
<div id="render-target">

  <div class="status-overlay">
    <div class="status-time">8:42</div>
    <div class="status-icons">
      <div class="status-dot"></div>
      <div class="status-dot"></div>
      <div class="status-dot"></div>
      <div class="status-dot"></div>
      <div class="status-dot"></div>
    </div>
  </div>

  <div class="banner">
    <div class="banner-text">
      Search, collect, and save unlimited recipes<br>
      from all around the web to your Kitchen Stories<br>
      cookbooks.
    </div>
    <div class="cta">Unlock cookbook+</div>
  </div>

  <div class="section">
    <div class="sec-title">ACCOUNT</div>

    <div class="row">
      <div class="row-content">
        <div class="label">Current Plan</div>
      </div>
      <div class="subtle">Free</div>
    </div>

    <div class="row" style="border-bottom:none; padding-top:34px; padding-bottom:10px;">
      <div class="pill">TRY COOKBOOK+</div>
    </div>
  </div>

  <div class="section">
    <div class="sec-title">SYSTEM</div>

    <div class="row">
      <div class="row-content">
        <div class="icon">
          <!-- Globe icon -->
          <svg viewBox="0 0 24 24">
            <circle cx="12" cy="12" r="9"></circle>
            <path d="M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18"></path>
          </svg>
        </div>
        <div class="label">Languages</div>
      </div>
    </div>

    <div class="row">
      <div class="row-content">
        <div class="icon">
          <!-- Measuring cup icon -->
          <svg viewBox="0 0 24 24">
            <path d="M5 5h10l3 3v3"></path>
            <path d="M7 5v12a3 3 0 0 0 3 3h4a3 3 0 0 0 3-3V8"></path>
            <path d="M9 9h6M9 12h6"></path>
          </svg>
        </div>
        <div class="label">Measurement System</div>
      </div>
    </div>

    <div class="row">
      <div class="row-content">
        <div class="icon">
          <!-- Play icon -->
          <svg viewBox="0 0 24 24">
            <circle cx="12" cy="12" r="9"></circle>
            <path d="M10 8l6 4-6 4z"></path>
          </svg>
        </div>
        <div class="label">Video autoplay</div>
      </div>
    </div>

    <div class="row">
      <div class="row-content">
        <div class="icon">
          <!-- Bell icon -->
          <svg viewBox="0 0 24 24">
            <path d="M6 10a6 6 0 0 1 12 0v5l2 2H4l2-2z"></path>
            <path d="M10 19a2 2 0 0 0 4 0"></path>
          </svg>
        </div>
        <div class="label">Notifications</div>
      </div>
    </div>

    <div class="row">
      <div class="row-content">
        <div class="icon">
          <!-- Half circle / display icon -->
          <svg viewBox="0 0 24 24">
            <path d="M3 12a9 9 0 0 1 18 0"></path>
            <path d="M4 16h16"></path>
          </svg>
        </div>
        <div class="label">Display</div>
      </div>
    </div>
  </div>

  <div class="section">
    <div class="sec-title">APPLIANCES</div>

    <div class="row">
      <div class="row-content">
        <div class="icon">
          <!-- Home connect (house) icon -->
          <svg viewBox="0 0 24 24">
            <path d="M4 11l8-6 8 6"></path>
            <path d="M6 10v8h12v-8"></path>
            <path d="M10 18v-4h4v4"></path>
          </svg>
        </div>
        <div class="label">Home Connect</div>
      </div>
      <div class="toggle">
        <div class="tog-dot"></div>
        <div class="tog-dot" style="opacity:0.6;"></div>
      </div>
    </div>
  </div>

  <div class="section">
    <div class="sec-title">MORE</div>
  </div>

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