File size: 6,804 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Introduce Plants to Greg</title>
<style>
  body { margin: 0; padding: 0; background: transparent; font-family: "Segoe UI", Roboto, system-ui, -apple-system, Helvetica, Arial, sans-serif; }
  #render-target {
    position: relative;
    overflow: hidden;
    width: 1080px;
    height: 2400px;
    background: #FAF8F2;
  }

  /* Subtle background leaf outlines */
  .bg-shape {
    position: absolute;
    border: 6px solid rgba(0,0,0,0.05);
    border-radius: 60px;
    transform: rotate(12deg);
    filter: blur(0.1px);
  }
  .bg1 { width: 520px; height: 420px; top: 180px; left: -120px; }
  .bg2 { width: 540px; height: 460px; top: 160px; right: -90px; transform: rotate(-8deg); }
  .bg3 { width: 420px; height: 360px; bottom: 200px; right: -80px; transform: rotate(18deg); }
  .bg4 { width: 380px; height: 320px; bottom: 260px; left: -60px; transform: rotate(-12deg); }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    box-sizing: border-box;
  }
  .status-left, .status-right {
    display: flex; align-items: center; gap: 24px; color: #2D2D2D; font-weight: 600; font-size: 40px;
  }
  .dot { width: 14px; height: 14px; background:#6b6b6b; border-radius: 50%; display:inline-block; }

  .status-icon {
    width: 40px; height: 40px;
  }
  .status-right .status-icon { width: 48px; height: 48px; }

  /* Main content */
  .content {
    position: absolute;
    top: 380px;
    left: 0;
    width: 100%;
    padding: 0 90px;
    box-sizing: border-box;
    text-align: center;
  }
  .leaf-icon {
    width: 140px;
    height: 160px;
    margin: 0 auto 40px;
  }

  .title {
    font-size: 72px;
    font-weight: 800;
    color: #101010;
    line-height: 1.15;
    letter-spacing: 0.2px;
    margin: 0 0 36px;
  }
  .subtitle {
    font-size: 36px;
    color: #5E5D70;
    line-height: 1.5;
    margin-bottom: 80px;
  }

  .btn {
    width: 900px;
    height: 130px;
    margin: 0 auto 40px;
    border-radius: 65px;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: default;
  }
  .btn.primary {
    background: #16A34A;
    color: #ffffff;
    box-shadow: 0 14px 0 rgba(0,0,0,0.08);
  }
  .btn.outline {
    background: #ffffff;
    color: #16A34A;
    border: 10px solid #16A34A;
  }

  /* Bottom nav bar */
  .tabbar {
    position: absolute;
    bottom: 120px;
    left: 0;
    width: 100%;
    height: 180px;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-sizing: border-box;
  }
  .tabitem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: #9A9AA1;
    font-size: 36px;
    font-weight: 600;
  }
  .tabitem.active { color: #2E2A39; }
  .tabicon { width: 64px; height: 64px; }

  /* Home indicator */
  .home-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 16px;
    border-radius: 10px;
    background: rgba(0,0,0,0.85);
  }
</style>
</head>
<body>
<div id="render-target">
  <!-- faint decorative outlines -->
  <div class="bg-shape bg1"></div>
  <div class="bg-shape bg2"></div>
  <div class="bg-shape bg3"></div>
  <div class="bg-shape bg4"></div>

  <!-- Status bar -->
  <div class="status-bar">
    <div class="status-left">
      <span>11:41</span>
      <!-- simple weather icon -->
      <svg class="status-icon" viewBox="0 0 24 24">
        <circle cx="12" cy="12" r="10" fill="#888" />
        <text x="12" y="16" font-size="10" text-anchor="middle" fill="#fff">32°</text>
      </svg>
      <!-- globe icons -->
      <svg class="status-icon" viewBox="0 0 24 24">
        <circle cx="12" cy="12" r="10" fill="#777"/>
        <path d="M2 12h20M12 2v20" stroke="#fff" stroke-width="2"/>
      </svg>
      <svg class="status-icon" viewBox="0 0 24 24">
        <circle cx="12" cy="12" r="10" fill="#777"/>
        <path d="M2 12h20M12 2v20" stroke="#fff" stroke-width="2"/>
      </svg>
      <span class="dot"></span>
    </div>
    <div class="status-right">
      <svg class="status-icon" viewBox="0 0 24 24">
        <path d="M2 9l6-6h12v18H8L2 15V9z" fill="#666"/>
      </svg>
      <svg class="status-icon" viewBox="0 0 24 24">
        <rect x="3" y="5" width="18" height="14" rx="2" fill="#666"/>
        <rect x="19" y="8" width="2" height="8" fill="#ccc"/>
      </svg>
    </div>
  </div>

  <!-- Main content -->
  <div class="content">
    <!-- Leaf mascot icon -->
    <svg class="leaf-icon" viewBox="0 0 120 140">
      <path d="M60 10c35 12 48 44 36 72S58 130 36 110 12 44 36 24 60 10 60 10z" fill="#B8F178" stroke="#27AE60" stroke-width="4"/>
      <!-- lightning -->
      <path d="M56 58l16-8-10 18h12l-24 20 8-18H48l8-12z" fill="#16A34A"/>
      <!-- face -->
      <circle cx="46" cy="50" r="4" fill="#333"/>
      <circle cx="64" cy="50" r="4" fill="#333"/>
      <path d="M48 62c6 6 12 6 18 0" stroke="#333" stroke-width="3" fill="none" stroke-linecap="round"/>
      <!-- stem -->
      <rect x="72" y="116" width="8" height="20" rx="4" fill="#27AE60"/>
    </svg>

    <h1 class="title">Let's introduce your<br>plants to Greg</h1>
    <p class="subtitle">Greg will scan and identify your plants to give<br>you personalized care information.</p>

    <div class="btn primary">Take Photo</div>
    <div class="btn outline">Upload photo</div>
  </div>

  <!-- Bottom tab bar -->
  <div class="tabbar">
    <div class="tabitem active">
      <svg class="tabicon" viewBox="0 0 24 24">
        <rect x="4" y="4" width="16" height="16" rx="3" fill="none" stroke="#2E2A39" stroke-width="2"/>
        <path d="M8 12l3 3 5-7" stroke="#2E2A39" stroke-width="2" fill="none" stroke-linecap="round"/>
      </svg>
      <div>Schedule</div>
    </div>
    <div class="tabitem">
      <svg class="tabicon" viewBox="0 0 24 24">
        <rect x="3" y="3" width="18" height="18" rx="3" fill="none" stroke="#9A9AA1" stroke-width="2"/>
        <rect x="8" y="8" width="8" height="8" rx="2" fill="none" stroke="#9A9AA1" stroke-width="2"/>
      </svg>
      <div>Identify/Add</div>
    </div>
    <div class="tabitem">
      <svg class="tabicon" viewBox="0 0 24 24">
        <path d="M4 6h16v9H8l-4 5V6z" fill="none" stroke="#9A9AA1" stroke-width="2"/>
      </svg>
      <div>Community</div>
    </div>
  </div>

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