File size: 9,043 Bytes
c32f9a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PlantVision - Identify</title>
<meta name="viewport" content="width=1080, initial-scale=1">
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
  }

  /* Camera view placeholder */
  .camera-view {
    position: absolute;
    left: 0; top: 0;
    width: 1080px; height: 2400px;
    background: #E0E0E0;
    border: 1px solid #BDBDBD;
    display: flex; align-items: center; justify-content: center;
    color: #757575; font-size: 36px; letter-spacing: 0.2px;
  }

  /* Top system/status bar */
  .status-bar {
    position: absolute; left: 0; top: 0;
    width: 1080px; height: 140px;
    background: rgba(255,255,255,0.95);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .status-left, .status-center, .status-right {
    display: flex; align-items: center; gap: 26px;
    color: #222;
  }
  .status-time { font-weight: 600; font-size: 34px; }
  .status-icon svg { width: 34px; height: 34px; }

  /* App header overlays */
  .app-header {
    position: absolute; top: 210px; left: 0; width: 100%;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
  }
  .logo {
    display: inline-flex; align-items: center; gap: 14px;
    color: #ffffff; font-size: 48px; font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }
  .logo .mark {
    width: 42px; height: 42px; border-radius: 50%;
    background: #6EE087; display: flex; align-items: center; justify-content: center;
  }
  .logo .mark svg { width: 26px; height: 26px; }

  /* Left purple circular button */
  .left-pill {
    position: absolute; top: 210px; left: 40px;
    width: 96px; height: 96px; border-radius: 48px;
    background: #CFA9E9;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }
  .left-pill svg { width: 48px; height: 48px; fill: #6a3c99; opacity: 0.9; }

  /* Right small controls */
  .right-controls {
    position: absolute; top: 210px; right: 40px;
    display: flex; gap: 18px;
  }
  .control-box {
    width: 70px; height: 70px; border-radius: 16px;
    background: rgba(255,255,255,0.95);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  }
  .control-box svg { width: 40px; height: 40px; }

  /* Scanning frame corners */
  .scan-corner {
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 32px;
  }
  .corner-tl { top: 720px; left: 110px; border-top: 14px solid #BDECE2; border-left: 14px solid #BDECE2; }
  .corner-tr { top: 720px; right: 110px; border-top: 14px solid #BDECE2; border-right: 14px solid #BDECE2; }
  .corner-bl { top: 1320px; left: 110px; border-bottom: 14px solid #BDECE2; border-left: 14px solid #BDECE2; }
  .corner-br { top: 1320px; right: 110px; border-bottom: 14px solid #BDECE2; border-right: 14px solid #BDECE2; }

  /* Identify tip overlay */
  .tip {
    position: absolute; left: 200px; top: 1520px;
    width: 680px; height: 120px; border-radius: 26px;
    background: rgba(0,0,0,0.35);
    color: #fff; font-size: 38px; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
  }

  /* Bottom action controls over camera */
  .gallery-btn {
    position: absolute; left: 80px; top: 1760px;
    width: 140px; height: 110px; border-radius: 16px;
    background: rgba(0,0,0,0.35);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  }
  .gallery-btn svg { width: 86px; height: 86px; stroke: #fff; }

  .shutter {
    position: absolute; left: 50%; top: 1750px; transform: translateX(-50%);
    width: 180px; height: 180px; border-radius: 90px;
    background: rgba(255,255,255,0.85);
    border: 6px solid #5a5a5a;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.32);
  }
  .shutter svg { width: 120px; height: 120px; }

  /* Bottom navigation */
  .bottom-nav {
    position: absolute; left: 0; bottom: 0;
    width: 1080px; height: 220px;
    background: #ffffff; border-top: 1px solid #E0E0E0;
    display: flex; align-items: center; justify-content: space-around;
  }
  .nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    color: #777; font-size: 34px;
  }
  .nav-item svg { width: 64px; height: 64px; }
  .nav-item.active { color: #0BA66A; font-weight: 700; }
  .home-indicator {
    position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
    width: 220px; height: 12px; border-radius: 6px; background: #D9D9D9;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Camera feed placeholder -->
  <div class="camera-view">[IMG: Plant Camera View]</div>

  <!-- Top status bar -->
  <div class="status-bar">
    <div class="status-left">
      <div class="status-time">11:42</div>
    </div>
    <div class="status-center">
      <div class="status-icon">
        <svg viewBox="0 0 24 24"><path fill="#444" d="M12 2a5 5 0 0 0-5 5h2a3 3 0 0 1 3-3 3 3 0 0 1 3 3h2a5 5 0 0 0-5-5zm0 6a3 3 0 0 0-3 3h2a1 1 0 1 1 2 0h2a3 3 0 0 0-3-3z"/></svg>
      </div>
      <div style="font-size:32px;color:#444;">32°</div>
      <div class="status-icon">
        <svg viewBox="0 0 24 24"><path fill="#444" d="M12 2a10 10 0 1 0 0 20A10 10 0 0 0 12 2zm0 2c2.9 0 5.4 1.4 7 3.5H5C6.6 5.4 9.1 4 12 4zm0 16c-2.9 0-5.4-1.4-7-3.5h14c-1.6 2.1-4.1 3.5-7 3.5z"/></svg>
      </div>
      <div class="status-icon">
        <svg viewBox="0 0 24 24"><path fill="#444" d="M12 2a10 10 0 1 0 0 20c3.4 0 6.4-1.7 8.2-4.3L12 12V2z"/></svg>
      </div>
    </div>
    <div class="status-right">
      <div class="status-icon">
        <svg viewBox="0 0 24 24"><path fill="#444" d="M3 18h2a9 9 0 0 1 9-9V7A11 11 0 0 0 3 18zm4 0h2a5 5 0 0 1 5-5v-2a7 7 0 0 0-7 7zm5 0h2c0-1.1.9-2 2-2v-2a4 4 0 0 0-4 4zm5 3a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"/></svg>
      </div>
      <div class="status-icon">
        <svg viewBox="0 0 24 24"><path fill="#444" d="M17 6H7v11h10V6zm1-2a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h12z"/></svg>
      </div>
    </div>
  </div>

  <!-- App header logo -->
  <div class="app-header">
    <div class="logo">
      <span class="mark">
        <svg viewBox="0 0 24 24"><path fill="#ffffff" d="M13 2L6 14h5l-1 8 7-12h-5l1-8z"/></svg>
      </span>
      <span>PlantVision</span>
    </div>
  </div>

  <!-- Left purple circular icon -->
  <div class="left-pill">
    <svg viewBox="0 0 24 24"><path d="M12 3c-4 2-7 6-7 9a7 7 0 0 0 14 0c0-3-3-7-7-9zm0 5c1.8 1.3 3 3.2 3 4.7A3 3 0 0 1 9 12c0-1.5 1.2-3.4 3-4z"/></svg>
  </div>

  <!-- Right small controls -->
  <div class="right-controls">
    <div class="control-box">
      <svg viewBox="0 0 24 24"><path fill="#333" d="M5 4h2v16H5V4zm6 3h2v10h-2V7zm6-2h2v14h-2V5z"/></svg>
    </div>
    <div class="control-box">
      <svg viewBox="0 0 24 24"><path fill="#2c7d44" d="M12 2c-4 3-7 7-7 10a7 7 0 0 0 14 0c0-3-3-7-7-10z"/></svg>
    </div>
  </div>

  <!-- Scanning frame corners -->
  <div class="scan-corner corner-tl"></div>
  <div class="scan-corner corner-tr"></div>
  <div class="scan-corner corner-bl"></div>
  <div class="scan-corner corner-br"></div>

  <!-- Identify tip -->
  <div class="tip">Tap to identify the plant</div>

  <!-- Gallery icon button -->
  <div class="gallery-btn">
    <svg viewBox="0 0 64 64" fill="none" stroke-width="3">
      <rect x="10" y="14" width="44" height="32" rx="6" stroke="#fff"></rect>
      <circle cx="22" cy="26" r="4" stroke="#fff"></circle>
      <path d="M16 38l10-8 8 6 14-10" stroke="#fff"></path>
    </svg>
  </div>

  <!-- Shutter button -->
  <div class="shutter">
    <svg viewBox="0 0 100 100">
      <circle cx="50" cy="50" r="38" fill="none" stroke="#bbb" stroke-width="10"/>
      <path d="M50 12 A38 38 0 0 1 88 50" fill="none" stroke="#6F61F6" stroke-width="10" stroke-linecap="round"/>
    </svg>
  </div>

  <!-- Bottom navigation -->
  <div class="bottom-nav">
    <div class="nav-item">
      <svg viewBox="0 0 24 24"><path fill="#777" d="M19 3H5a2 2 0 0 0-2 2v16l5-3h11a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm-2 10H7v-2h10v2z"/></svg>
      <div>Schedule</div>
    </div>
    <div class="nav-item active">
      <svg viewBox="0 0 24 24"><path fill="#0BA66A" d="M7 7h3V5H5v5h2V7zm7 10h3v2h-5v-5h2v3zm3-10h-3V5h5v5h-2V7zM10 17H7v-3H5v5h5v-2z"/></svg>
      <div>Identify/Add</div>
    </div>
    <div class="nav-item">
      <svg viewBox="0 0 24 24"><path fill="#777" d="M12 3C7 3 3 6.6 3 11c0 2.3 1.3 4.3 3.3 5.7L6 21l3.5-2c.8.2 1.6.3 2.5.3 5 0 9-3.6 9-8s-4-8-9-8zm-4 8h8v2H8v-2z"/></svg>
      <div>Community</div>
    </div>
    <div class="home-indicator"></div>
  </div>

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