File size: 6,537 Bytes
ff1f000
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Mobile UI - Google Meet Style</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: "Segoe UI", Arial, Helvetica, sans-serif; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #1B191D; /* deep dark background */
    color: #E9E6EF;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 110px;
    color: #D7D2E4;
    font-size: 34px;
    letter-spacing: 0.5px;
  }
  .status-time {
    position: absolute;
    left: 54px;
    top: 34px;
    font-weight: 600;
  }
  .status-icons {
    position: absolute;
    right: 40px;
    top: 34px;
    display: flex;
    align-items: center;
    gap: 28px;
    opacity: 0.9;
  }
  .icon-wifi, .icon-signal, .icon-battery {
    width: 40px; height: 34px;
  }
  .icon-dot {
    width: 10px; height: 10px; background: #BCB4CC; border-radius: 50%;
  }
  .icon-battery {
    position: relative;
  }
  .icon-battery::before {
    content: "";
    position: absolute;
    right: -8px; top: 10px;
    width: 8px; height: 14px; background: #BCB4CC; border-radius: 2px;
  }
  .icon-battery svg, .icon-wifi svg, .icon-signal svg { fill: none; stroke: #D7D2E4; stroke-width: 4; }

  /* Search bar */
  .search-wrap {
    position: absolute;
    top: 140px;
    left: 40px;
    width: 1000px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 0 24px;
    box-sizing: border-box;
    background: #332D38;
    border-radius: 60px;
  }
  .hamburger {
    width: 80px; height: 80px; display: flex; align-items: center; justify-content: center;
  }
  .hamburger svg { stroke: #D7D2E4; stroke-width: 8; }
  .search-text {
    flex: 1;
    color: #CFC8D9;
    font-size: 40px;
    margin-left: 10px;
  }
  .avatar {
    width: 92px; height: 92px; border-radius: 50%;
    background: #29B7A7;
    color: #072B29;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 44px;
  }

  /* Upgrade card */
  .card {
    position: absolute;
    top: 310px;
    left: 40px;
    width: 1000px;
    background: #231F27;
    border-radius: 34px;
    padding: 42px;
    box-sizing: border-box;
    color: #EEE8F7;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .card h2 {
    margin: 0 0 10px 0;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 700;
  }
  .card .subtitle {
    margin-top: 24px;
    font-size: 40px;
    color: #D2CBDE;
    line-height: 1.35;
    max-width: 620px;
  }
  .card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .meet-art {
    width: 280px; height: 280px; border-radius: 140px;
    background: #E0E0E0; border: 1px solid #BDBDBD;
    display: flex; align-items: center; justify-content: center;
    color: #757575; font-size: 36px; text-align: center;
  }
  .card-actions {
    margin-top: 30px;
    display: flex; gap: 48px;
  }
  .link {
    color: #CFAAF7;
    font-size: 40px;
    font-weight: 600;
  }

  /* Floating action button */
  .fab {
    position: absolute;
    right: 40px;
    bottom: 160px;
    background: #E1BEFF;
    color: #1E1630;
    height: 120px;
    width: 360px;
    border-radius: 140px;
    display: flex; align-items: center;
    justify-content: center; gap: 26px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    font-size: 46px; font-weight: 700;
  }
  .fab svg { fill: none; stroke: #2B1F3A; stroke-width: 8; }

  /* Decorative tiny confetti on card (subtle, optional) */
  .confetti { position: absolute; }
  .confetti .dot { width: 8px; height: 8px; border-radius: 50%; position: absolute; }
  .c1 { width: 18px; height: 4px; background: #F05A57; transform: rotate(30deg); right: 240px; top: 390px; }
  .c2 { width: 14px; height: 14px; background: #FFD12E; border-radius: 2px; right: 210px; top: 360px; }
  .c3 { width: 8px; height: 8px; background: #3AD168; border-radius: 50%; right: 300px; top: 420px; }
  .c4 { width: 20px; height: 4px; background: #FFFFFF; opacity: 0.6; transform: rotate(-15deg); right: 120px; top: 480px; }
  .c5 { width: 8px; height: 8px; background: #5AA1FF; border-radius: 50%; right: 98px; top: 444px; }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-time">8:33</div>
    <div class="status-icons">
      <div class="icon-signal">
        <svg viewBox="0 0 40 34"><path d="M1 33h5M1 25h12M1 17h20M1 9h28M1 1h36"/></svg>
      </div>
      <div class="icon-wifi">
        <svg viewBox="0 0 40 34"><path d="M2 10c9-8 27-8 36 0M8 16c6-5 18-5 24 0M15 22c4-3 10-3 14 0M20 28l3 3"/></svg>
      </div>
      <div class="icon-dot"></div>
      <div class="icon-battery">
        <svg viewBox="0 0 40 34"><rect x="2" y="6" width="32" height="22" rx="4"></rect><rect x="6" y="10" width="20" height="14" rx="2" fill="#D7D2E4"></rect></svg>
      </div>
    </div>
  </div>

  <!-- Search bar -->
  <div class="search-wrap">
    <div class="hamburger">
      <svg viewBox="0 0 80 80">
        <line x1="16" y1="24" x2="64" y2="24"></line>
        <line x1="16" y1="40" x2="64" y2="40"></line>
        <line x1="16" y1="56" x2="64" y2="56"></line>
      </svg>
    </div>
    <div class="search-text">Search or enter code</div>
    <div class="avatar">C</div>
  </div>

  <!-- Upgrade card -->
  <div class="card">
    <div class="card-content">
      <div>
        <h2>Duo has been upgraded to<br>Meet</h2>
        <div class="subtitle">
          Look for the Meet name and icon as your one app for video calling and meetings
        </div>
        <div class="card-actions">
          <div class="link">Got it</div>
          <div class="link">Learn more</div>
        </div>
      </div>
      <div class="meet-art">[IMG: Meet logo]</div>
    </div>
  </div>

  <!-- Decorative confetti bits near the right of the card -->
  <div class="confetti">
    <div class="c1"></div>
    <div class="c2"></div>
    <div class="c3 dot"></div>
    <div class="c4"></div>
    <div class="c5 dot"></div>
  </div>

  <!-- Floating Action Button -->
  <div class="fab">
    <svg viewBox="0 0 64 64" width="64" height="64">
      <rect x="6" y="18" width="40" height="28" rx="6"></rect>
      <polygon points="46,30 58,24 58,40 46,34" fill="none"></polygon>
    </svg>
    <div>New</div>
  </div>

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