File size: 5,791 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Photo Editor UI Mock</title>
<style>
  body {
    margin: 0;
    padding: 0;
    background: transparent;
  }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #000000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    color: #FFFFFF;
  }

  /* Top nav */
  .top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    display: flex;
    align-items: center;
    padding: 0 32px;
  }
  .back-btn {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
  }
  .counter-pill {
    position: absolute;
    top: 158px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.12);
    color: #FFFFFF;
    padding: 10px 22px;
    border-radius: 18px;
    font-size: 30px;
    letter-spacing: 0.4px;
  }

  /* Image area */
  .image-stage {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 470px;
    width: 940px;
    height: 1320px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    text-align: center;
    font-size: 30px;
    line-height: 1.4;
  }

  /* Bottom controls */
  .bottom-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 140px;
    height: 220px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .actions {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: center;
    width: calc(100% - 340px);
    height: 100%;
  }
  .action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    color: #E0E0E0;
  }
  .action svg {
    width: 72px;
    height: 72px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .action span {
    font-size: 30px;
    color: #E0E0E0;
  }
  .done-btn {
    margin-left: auto;
    background: #1E88E5;
    color: #FFFFFF;
    height: 120px;
    width: 280px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 38px;
    font-weight: 600;
  }
  .done-btn svg {
    width: 40px;
    height: 40px;
    fill: #FFFFFF;
    stroke: none;
  }

  /* Red indicator near "More" */
  .indicator {
    position: absolute;
    top: 8px;
    right: 170px;
    width: 18px;
    height: 18px;
    background: #E53935;
    border-radius: 50%;
  }

  /* Gesture bar */
  .gesture {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 12px;
    background: rgba(255,255,255,0.75);
    border-radius: 8px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Top Navigation -->
  <div class="top-bar">
    <div class="back-btn" aria-label="Back">
      <svg viewBox="0 0 24 24">
        <path d="M15 4 L7 12 L15 20" stroke="#FFFFFF" stroke-width="3.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
  </div>
  <div class="counter-pill">1/1</div>

  <!-- Main Image Placeholder -->
  <div class="image-stage">[IMG: Office desk with laptop, cables, and workspace]</div>

  <!-- Bottom Controls -->
  <div class="bottom-panel">
    <div class="actions">
      <!-- Add -->
      <div class="action">
        <svg viewBox="0 0 24 24" aria-hidden="true">
          <rect x="3.5" y="6" width="17" height="12" rx="2"></rect>
          <path d="M12 9.5v5M9.5 12h5"></path>
          <path d="M8 6l1.5-2h5L16 6"></path>
        </svg>
        <span>Add</span>
      </div>
      <!-- Filters -->
      <div class="action">
        <svg viewBox="0 0 24 24" aria-hidden="true">
          <path d="M4 7h10"></path>
          <circle cx="16" cy="7" r="2" fill="#FFFFFF" stroke="none"></circle>
          <path d="M4 12h8"></path>
          <circle cx="10" cy="12" r="2" fill="#FFFFFF" stroke="none"></circle>
          <path d="M4 17h13"></path>
          <circle cx="8" cy="17" r="2" fill="#FFFFFF" stroke="none"></circle>
        </svg>
        <span>Filters</span>
      </div>
      <!-- Crop -->
      <div class="action">
        <svg viewBox="0 0 24 24" aria-hidden="true">
          <path d="M7 3v14a2 2 0 0 0 2 2h14"></path>
          <path d="M21 7H7"></path>
          <path d="M17 21V7a2 2 0 0 0-2-2H3"></path>
        </svg>
        <span>Crop</span>
      </div>
      <!-- Rotate -->
      <div class="action">
        <svg viewBox="0 0 24 24" aria-hidden="true">
          <path d="M12 6a6 6 0 1 1-4.24 10.24"></path>
          <path d="M12 2v4H8"></path>
        </svg>
        <span>Rotate</span>
      </div>
      <!-- More -->
      <div class="action" style="position: relative;">
        <svg viewBox="0 0 24 24" aria-hidden="true">
          <circle cx="12" cy="5" r="2" fill="#FFFFFF" stroke="none"></circle>
          <circle cx="12" cy="12" r="2" fill="#FFFFFF" stroke="none"></circle>
          <circle cx="12" cy="19" r="2" fill="#FFFFFF" stroke="none"></circle>
        </svg>
        <span>More</span>
      </div>
    </div>

    <div class="done-btn">
      <span>Done</span>
      <svg viewBox="0 0 24 24" aria-hidden="true">
        <path d="M9 18l6-6-6-6" />
      </svg>
    </div>

    <!-- Small red notification dot near More -->
    <div class="indicator" aria-hidden="true"></div>
  </div>

  <!-- Gesture Bar -->
  <div class="gesture" aria-hidden="true"></div>

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