| <!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; |
| } |
| |
| |
| .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 { |
| 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; } |
| |
| |
| .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; |
| } |
| |
| |
| .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 { |
| 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"> |
| |
| <div class="bg-shape bg1"></div> |
| <div class="bg-shape bg2"></div> |
| <div class="bg-shape bg3"></div> |
| <div class="bg-shape bg4"></div> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left"> |
| <span>11:41</span> |
| |
| <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> |
| |
| <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> |
|
|
| |
| <div class="content"> |
| |
| <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"/> |
| |
| <path d="M56 58l16-8-10 18h12l-24 20 8-18H48l8-12z" fill="#16A34A"/> |
| |
| <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"/> |
| |
| <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> |
|
|
| |
| <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> |