File size: 9,678 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<style>
  body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
  #render-target {
    width:1080px; height:2400px;
    position:relative; overflow:hidden;
    background:#ffffff;
  }

  /* Status bar */
  .status-bar {
    position:absolute; top:0; left:0; width:100%; height:100px;
    background:#0a6a39; color:#fff;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 32px; box-sizing:border-box;
    font-size:40px; letter-spacing:0.5px;
  }
  .status-icons { display:flex; align-items:center; gap:28px; }
  .status-dot { width:12px; height:12px; background:#cfe6cf; border-radius:50%; opacity:0.8; }
  .status-icon {
    width:44px; height:44px; border:2px solid rgba(255,255,255,0.8); border-radius:8px;
  }

  /* App bar with search */
  .app-bar {
    position:absolute; top:100px; left:0; width:100%; height:150px;
    background:#ffffff; display:flex; align-items:center; padding:0 24px; box-sizing:border-box;
  }
  .back-btn {
    width:80px; height:80px; display:flex; align-items:center; justify-content:center;
    margin-right:12px;
  }
  .search-pill {
    flex:1; height:96px; background:#f1f1f1; border-radius:48px;
    display:flex; align-items:center; padding:0 28px; box-sizing:border-box;
    color:#8a8a8a; font-size:38px;
  }
  .search-pill .text { flex:1; padding:0 18px; }
  .mic-btn {
    width:72px; height:72px; background:#2e7d32; border-radius:36px;
    display:flex; align-items:center; justify-content:center;
  }

  /* Recent search chip */
  .chip-row {
    position:absolute; top:270px; left:0; width:100%;
    padding:0 28px; box-sizing:border-box; display:flex; align-items:center; gap:18px;
  }
  .chip-icon {
    width:64px; height:64px; border-radius:32px; border:2px solid #d9d9d9; display:flex; align-items:center; justify-content:center;
  }
  .chip {
    height:76px; display:inline-flex; align-items:center; padding:0 28px;
    border:2px solid #d9d9d9; border-radius:38px; font-size:36px; color:#5e5e5e; background:#ffffff;
  }
  .divider {
    position:absolute; top:352px; left:0; width:100%; height:4px; background:#e5e5e5;
  }

  /* Trending header */
  .section-header {
    position:absolute; top:394px; left:0; width:100%;
    padding:0 32px; box-sizing:border-box; display:flex; align-items:center; gap:16px;
    color:#7a7a7a; font-size:42px; font-weight:600;
  }

  /* Categories row */
  .cards {
    position:absolute; top:480px; left:0; width:100%;
    padding:0 28px; box-sizing:border-box; display:flex; gap:28px;
  }
  .card {
    width:180px; background:#f5f5f5; border-radius:28px; padding:24px 18px; box-sizing:border-box;
    display:flex; flex-direction:column; align-items:center; gap:16px;
    box-shadow: 0 0 0 1px #eeeeee inset;
  }
  .img-ph {
    width:140px; height:120px; background:#E0E0E0; border:1px solid #BDBDBD;
    display:flex; align-items:center; justify-content:center; color:#757575; font-size:24px; text-align:center;
    border-radius:12px;
  }
  .card label {
    font-size:36px; color:#3e3e3e;
  }

  /* White content area spacer */
  .content-space { position:absolute; top:780px; left:0; width:100%; height:760px; }

  /* Keyboard mock */
  .keyboard {
    position:absolute; left:0; bottom:60px; width:100%; height:820px;
    background:#111; border-top-left-radius:40px; border-top-right-radius:40px;
    color:#e7e7e7;
  }
  .kb-top {
    height:120px; display:flex; align-items:center; gap:60px;
    padding:0 40px; box-sizing:border-box;
  }
  .kb-top .top-icon {
    width:78px; height:78px; border-radius:18px; border:2px solid #2a2a2a; display:flex; align-items:center; justify-content:center;
  }

  .keys { padding:0 32px; box-sizing:border-box; display:flex; flex-direction:column; gap:26px; }
  .row { display:flex; gap:16px; justify-content:center; }
  .key {
    width:90px; height:110px; background:#1f1f1f; border-radius:22px; display:flex; align-items:center; justify-content:center;
    font-size:42px; color:#e7e7e7;
  }
  .key.wide { width:140px; }
  .key.extra-wide { width:460px; }
  .key.green {
    background:#c8e6c9; color:#1b5e20; font-weight:bold;
  }
  .key.action {
    background:#2b2b2b;
  }

  /* Gesture bar */
  .gesture {
    position:absolute; bottom:18px; left:50%; transform:translateX(-50%);
    width:320px; height:14px; background:#ffffff; border-radius:10px; opacity:0.8;
  }

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

  <!-- Status bar -->
  <div class="status-bar">
    <div>10:09</div>
    <div class="status-icons">
      <div class="status-icon"></div>
      <div class="status-icon"></div>
      <div class="status-dot"></div>
      <div class="status-icon"></div>
      <div class="status-icon"></div>
    </div>
  </div>

  <!-- App bar with search -->
  <div class="app-bar">
    <div class="back-btn">
      <svg class="svg" width="48" height="48" viewBox="0 0 24 24">
        <path d="M15 18l-6-6 6-6" stroke="#2e2e2e" stroke-width="2.4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="search-pill">
      <svg class="svg" width="44" height="44" viewBox="0 0 24 24">
        <circle cx="11" cy="11" r="7" stroke="#9e9e9e" stroke-width="2" fill="none"/>
        <path d="M20 20l-4-4" stroke="#9e9e9e" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
      <div class="text">Aapko Kya Chahiye?</div>
      <div class="mic-btn">
        <svg class="svg" width="36" height="36" viewBox="0 0 24 24">
          <rect x="9" y="4" width="6" height="10" rx="3" fill="#fff"/>
          <path d="M6 11a6 6 0 0012 0M12 17v3" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
        </svg>
      </div>
    </div>
  </div>

  <!-- Recent search chip -->
  <div class="chip-row">
    <div class="chip-icon">
      <svg class="svg" width="36" height="36" viewBox="0 0 24 24">
        <path d="M12 5v6l4 2" stroke="#7a7a7a" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
        <path d="M21 12a9 9 0 11-9-9" stroke="#7a7a7a" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
    </div>
    <div class="chip">almond chocolate</div>
  </div>
  <div class="divider"></div>

  <!-- Trending header -->
  <div class="section-header">
    <svg class="svg" width="44" height="44" viewBox="0 0 24 24">
      <path d="M4 16l6-6 4 4 6-6" stroke="#7a7a7a" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
    </svg>
    <div>Trending in your area</div>
  </div>

  <!-- Category cards -->
  <div class="cards">
    <div class="card">
      <div class="img-ph">[IMG: Oil]</div>
      <label>Oil</label>
    </div>
    <div class="card">
      <div class="img-ph">[IMG: Ghee]</div>
      <label>Ghee</label>
    </div>
    <div class="card">
      <div class="img-ph">[IMG: Sugar]</div>
      <label>Sugar</label>
    </div>
    <div class="card">
      <div class="img-ph">[IMG: Rice]</div>
      <label>Rice</label>
    </div>
    <div class="card">
      <div class="img-ph">[IMG: Biscuits]</div>
      <label>Biscuits</label>
    </div>
  </div>

  <div class="content-space"></div>

  <!-- Keyboard mock -->
  <div class="keyboard">
    <div class="kb-top">
      <div class="top-icon"></div>
      <div class="top-icon"></div>
      <div class="top-icon">GIF</div>
      <div class="top-icon"></div>
      <div class="top-icon"></div>
      <div class="top-icon"></div>
      <div class="top-icon">
        <svg class="svg" width="44" height="44" viewBox="0 0 24 24">
          <circle cx="12" cy="12" r="9" stroke="#e7e7e7" stroke-width="2" fill="none"/>
          <path d="M12 6v6l4 2" stroke="#e7e7e7" stroke-width="2" fill="none" stroke-linecap="round"/>
        </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 action"></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 action">
          <svg class="svg" width="36" height="36" viewBox="0 0 24 24">
            <path d="M6 6l12 12M6 18L18 6" stroke="#e7e7e7" stroke-width="2" stroke-linecap="round"/>
          </svg>
        </div>
      </div>
      <div class="row">
        <div class="key green wide">?123</div>
        <div class="key action">,</div>
        <div class="key action">😊</div>
        <div class="key extra-wide action"></div>
        <div class="key action">.</div>
        <div class="key green wide">
          <svg class="svg" width="36" height="36" viewBox="0 0 24 24">
            <rect x="9" y="4" width="6" height="10" rx="3" fill="#1b5e20"/>
            <path d="M6 11a6 6 0 0012 0M12 17v3" stroke="#1b5e20" stroke-width="2" fill="none" stroke-linecap="round"/>
          </svg>
        </div>
      </div>
    </div>
  </div>

  <div class="gesture"></div>
</div>
</body>
</html>