File size: 6,122 Bytes
98687c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #193E4A; /* deep teal */
    color: #FFFFFF;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.95;
    color: #EAF4F7;
  }
  .status-time {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .status-icons {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .status-icons svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: #EAF4F7;
    stroke-width: 3;
    opacity: 0.95;
  }

  /* Title & subtitle */
  .title {
    position: absolute;
    top: 220px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 72px;
    font-weight: 700;
  }
  .subtitle {
    position: absolute;
    top: 320px;
    left: 120px;
    width: 840px;
    text-align: center;
    font-size: 32px;
    line-height: 46px;
    color: #B8D0D9;
  }

  /* Permission cards */
  .cards {
    position: absolute;
    top: 520px;
    left: 40px;
    right: 40px;
  }
  .perm-card {
    background: #2B5361; /* slightly lighter teal */
    border-radius: 26px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05) inset;
  }
  .card-left {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .icon-wrap svg {
    width: 54px;
    height: 54px;
    stroke: #DDE9EE;
    stroke-width: 3.5;
    fill: none;
  }
  .card-text .card-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #EAF4F7;
    margin-bottom: 6px;
  }
  .card-text .card-desc {
    font-size: 28px;
    color: #9EB6C0;
  }
  .checkbox {
    width: 56px;
    height: 56px;
    border: 3px solid #8FA8B2;
    border-radius: 12px;
    box-sizing: border-box;
    opacity: 0.9;
  }

  /* Bottom buttons */
  .actions {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 190px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
  }
  .btn {
    height: 120px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }
  .btn-outline {
    width: 280px;
    color: #FFFFFF;
    border: 3px solid #B6CED6;
    background: transparent;
  }
  .btn-primary {
    flex: 1;
    background: #1FF7B5; /* bright green */
    color: #103D42;
    box-shadow: 0 6px 16px rgba(12, 239, 167, 0.35);
  }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 12px;
    background: rgba(255,255,255,0.85);
    border-radius: 6px;
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-time">10:08</div>
    <div class="status-icons">
      <!-- small dot to mimic separators -->
      <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="#EAF4F7"/></svg>
      <!-- Upload/arrow-like simple icon -->
      <svg viewBox="0 0 24 24">
        <path d="M12 5v12M7 10l5-5 5 5" />
      </svg>
      <!-- Wifi -->
      <svg viewBox="0 0 24 24">
        <path d="M2 8c5-4 15-4 20 0" />
        <path d="M5 12c3-3 11-3 14 0" />
        <path d="M8 16c2-2 6-2 8 0" />
        <circle cx="12" cy="19" r="1.8" fill="#EAF4F7"/>
      </svg>
      <!-- Battery -->
      <svg viewBox="0 0 28 24">
        <rect x="2" y="6" width="20" height="12" rx="2"></rect>
        <rect x="23" y="9" width="3" height="6" rx="1"></rect>
        <rect x="4" y="8" width="14" height="8" rx="1" fill="#EAF4F7" stroke="none"></rect>
      </svg>
    </div>
  </div>

  <!-- Title -->
  <div class="title">Permissions</div>
  <div class="subtitle">Grant Windy.app permissions for an optimal experience</div>

  <!-- Permission cards -->
  <div class="cards">
    <div class="perm-card">
      <div class="card-left">
        <div class="icon-wrap">
          <!-- Bell + plus icon -->
          <svg viewBox="0 0 24 24">
            <path d="M12 4c-3 0-5 2-5 5v3l-2 3h14l-2-3V9c0-3-2-5-5-5z"></path>
            <path d="M10 19c0 1.1.9 2 2 2s2-.9 2-2" />
            <path d="M4 5h4M6 3v4" />
          </svg>
        </div>
        <div class="card-text">
          <div class="card-title">Push notifications</div>
          <div class="card-desc">Never miss great conditions or important updates</div>
        </div>
      </div>
      <div class="checkbox"></div>
    </div>

    <div class="perm-card">
      <div class="card-left">
        <div class="icon-wrap">
          <!-- Location/target icon -->
          <svg viewBox="0 0 24 24">
            <circle cx="12" cy="12" r="8"></circle>
            <circle cx="12" cy="12" r="2" fill="#DDE9EE" stroke="none"></circle>
            <path d="M12 3v3M21 12h-3M12 21v-3M3 12h3" />
          </svg>
        </div>
        <div class="card-text">
          <div class="card-title">Location</div>
          <div class="card-desc">Instantly see weather for your location and view spots nearby</div>
        </div>
      </div>
      <div class="checkbox"></div>
    </div>
  </div>

  <!-- Bottom actions -->
  <div class="actions">
    <div class="btn btn-outline">Skip</div>
    <div class="btn btn-primary">Allow all</div>
  </div>

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