File size: 9,120 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Reviews & Ratings</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #2b2b2b;
  }

  /* Status bar */
  .status-bar {
    height: 160px;
    background: #8B8B8B;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 48px;
    font-weight: 600;
    font-size: 42px;
    justify-content: space-between;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 36px;
  }
  .sb-icon {
    width: 40px; height: 40px;
  }
  .battery {
    display: flex; align-items: center; gap: 12px;
  }
  .battery svg { width: 46px; height: 46px; }

  /* App Bar */
  .app-bar {
    height: 170px;
    background: #EFEFEF;
    display: flex;
    align-items: center;
    padding: 0 36px;
    gap: 24px;
    border-bottom: 1px solid #E3E3E3;
  }
  .back-icon svg { width: 64px; height: 64px; }
  .app-title {
    font-size: 52px;
    font-weight: 700;
    color: #333;
  }

  /* Content area */
  .content {
    padding: 24px 52px 120px;
    overflow: hidden;
  }

  .review {
    padding: 30px 0;
  }
  .stars {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
  }
  .star svg { width: 46px; height: 46px; fill: #FFC107; }

  .user {
    font-size: 38px;
    font-weight: 600;
    margin: 6px 0 2px;
    color: #3a3a3a;
  }
  .meta {
    font-size: 28px;
    color: #8a8a8a;
    margin-bottom: 24px;
  }

  .review-title {
    font-size: 46px;
    font-weight: 700;
    margin: 12px 0 10px;
    color: #2f2f2f;
  }
  .review-text {
    font-size: 36px;
    line-height: 1.5;
    color: #444;
  }
  .divider {
    border-top: 2px dashed #D2D2D2;
    margin: 36px 0;
  }

  /* Bottom gesture bar */
  .bottom-bar {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 18px;
    background: #000;
    border-radius: 12px;
    opacity: 0.85;
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status Bar -->
  <div class="status-bar">
    <div>9:14</div>
    <div class="status-right">
      <!-- simple circular icons -->
      <svg class="sb-icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#ffffff88"/></svg>
      <svg class="sb-icon" viewBox="0 0 24 24"><rect x="4" y="4" width="16" height="16" rx="3" fill="#ffffff88"/></svg>
      <svg class="sb-icon" viewBox="0 0 24 24"><path d="M4 12h16" stroke="#fff" stroke-width="2"/></svg>
      <svg class="sb-icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="#fff"/></svg>
      <div class="battery">
        <svg viewBox="0 0 24 24">
          <rect x="2" y="6" width="18" height="12" rx="2" fill="#fff"/>
          <rect x="20" y="10" width="2" height="4" fill="#fff"/>
          <rect x="4" y="8" width="12" height="8" fill="#4CAF50"/>
        </svg>
        <span>84%</span>
      </div>
    </div>
  </div>

  <!-- App Bar -->
  <div class="app-bar">
    <div class="back-icon">
      <svg viewBox="0 0 24 24">
        <path d="M15 6L9 12l6 6" fill="none" stroke="#222" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="app-title">Reviews & Ratings</div>
  </div>

  <!-- Content -->
  <div class="content">
    <!-- First review (no stars shown) -->
    <div class="review">
      <div class="user">User</div>
      <div class="meta">undefined NaN, NaN</div>
      <div class="review-title">Pinaka Hammer drill machine</div>
      <div class="review-text">
        Very Very nice product and quality and iam happy<br/>
        Very good moglix
      </div>
      <div class="divider"></div>
    </div>

    <!-- Review 2 -->
    <div class="review">
      <div class="stars">
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
      </div>
      <div class="user">S M Sreejith</div>
      <div class="meta">undefined NaN, NaN</div>
      <div class="review-title">Wireless Printing Heaven</div>
      <div class="review-text">
        The Wi Fi feature is fantastic. I can print from my phone or laptop effortlessly. Plus, the LCD display adds
        a modern touch to this printer
      </div>
      <div class="divider"></div>
    </div>

    <!-- Review 3 -->
    <div class="review">
      <div class="stars">
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
      </div>
      <div class="user">Nenavath Prabhu</div>
      <div class="meta">undefined NaN, NaN</div>
      <div class="review-title">Powerful and Reliable</div>
      <div class="review-text">
        This hammer drill is incredibly powerful. It effortlessly handled all my drilling tasks with ease. Definitely a
        reliable tool
      </div>
      <div class="divider"></div>
    </div>

    <!-- Review 4 -->
    <div class="review">
      <div class="stars">
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
      </div>
      <div class="user">Vibhalakshi</div>
      <div class="meta">undefined NaN, NaN</div>
      <div class="review-title">Highly recommended</div>
      <div class="review-text">
        I have never had an issue with this product, and i will continue to use it for years to come.
      </div>
      <div class="divider"></div>
    </div>

    <!-- Review 5 -->
    <div class="review">
      <div class="stars">
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
        <div class="star"><svg viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg></div>
      </div>
      <div class="user">Sanjay Joshi</div>
      <div class="meta">undefined NaN, NaN</div>
      <div class="review-title">Powerful and Reliable Performance</div>
      <div class="review-text">
        Its exceptional quality ensures longlasting reliability, making it a valuable addition to my toolbox.
      </div>
    </div>
  </div>

  <!-- Bottom gesture bar -->
  <div class="bottom-bar"></div>
</div>
</body>
</html>