| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Select Your Sport</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #223f48; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| height: 120px; |
| color: #ffffff; |
| padding: 0 48px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| opacity: 0.95; |
| } |
| .status-left { |
| font-size: 42px; |
| font-weight: 600; |
| letter-spacing: 0.5px; |
| } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .status-icon { width: 44px; height: 44px; } |
| .status-icon path, .status-icon rect, .status-icon circle { fill: none; stroke: #ffffff; stroke-width: 5; } |
| |
| |
| .header { |
| margin-top: 220px; |
| text-align: center; |
| color: #ffffff; |
| padding: 0 64px; |
| } |
| .header h1 { |
| margin: 0 0 24px 0; |
| font-size: 68px; |
| font-weight: 800; |
| } |
| .header p { |
| margin: 0; |
| font-size: 36px; |
| line-height: 50px; |
| color: rgba(255,255,255,0.85); |
| max-width: 880px; |
| display: inline-block; |
| } |
| |
| |
| .sports-grid { |
| width: 960px; |
| margin: 90px auto 0; |
| display: grid; |
| grid-template-columns: repeat(3, 1fr); |
| grid-column-gap: 60px; |
| grid-row-gap: 90px; |
| text-align: center; |
| } |
| .sport { |
| color: #eaf2f6; |
| } |
| .sport .icon { |
| width: 160px; |
| height: 160px; |
| margin: 0 auto 24px; |
| } |
| .sport .icon svg { width: 160px; height: 160px; } |
| .sport .icon svg * { fill: #ffffff; stroke: none; } |
| .sport .label { |
| font-size: 36px; |
| font-weight: 700; |
| letter-spacing: 0.2px; |
| } |
| .sport.other .icon svg * { fill: #18F5B0; } |
| .sport.other .label { color: #18F5B0; } |
| |
| |
| .cta { |
| position: absolute; |
| left: 48px; |
| right: 48px; |
| bottom: 170px; |
| height: 150px; |
| background: #18F5B0; |
| border-radius: 32px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| box-shadow: 0 10px 20px rgba(0,0,0,0.15); |
| } |
| .cta span { |
| font-size: 50px; |
| font-weight: 800; |
| color: #1f3e47; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 48px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 240px; |
| height: 14px; |
| background: rgba(235,235,235,0.9); |
| border-radius: 7px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left">10:08</div> |
| <div class="status-right"> |
| |
| <svg class="status-icon" viewBox="0 0 44 44"> |
| <circle cx="8" cy="22" r="3" fill="#fff"></circle> |
| <circle cx="18" cy="22" r="3" fill="#fff"></circle> |
| <circle cx="28" cy="22" r="3" fill="#fff"></circle> |
| <circle cx="38" cy="22" r="3" fill="#fff"></circle> |
| </svg> |
| |
| <svg class="status-icon" viewBox="0 0 44 44"> |
| <path d="M22 32V12"></path> |
| <path d="M14 20l8-8 8 8"></path> |
| </svg> |
| |
| <svg class="status-icon" viewBox="0 0 44 44"> |
| <circle cx="22" cy="22" r="4" fill="#fff"></circle> |
| </svg> |
| |
| <svg class="status-icon" viewBox="0 0 44 44"> |
| <path d="M6 18c8-8 24-8 32 0"></path> |
| <path d="M12 24c6-6 18-6 24 0"></path> |
| <path d="M18 30c4-4 12-4 16 0"></path> |
| <circle cx="26" cy="34" r="2" fill="#fff"></circle> |
| </svg> |
| |
| <svg class="status-icon" viewBox="0 0 44 44"> |
| <rect x="7" y="12" width="28" height="20" rx="3" ry="3"></rect> |
| <rect x="36" y="18" width="3" height="8" rx="1" ry="1"></rect> |
| <rect x="10" y="15" width="22" height="14" fill="#fff" stroke="none"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <h1>Select Your Sport</h1> |
| <p>We will personalize the app according to your choice</p> |
| </div> |
|
|
| |
| <div class="sports-grid"> |
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| |
| <path d="M30 110h80l-20 12H40z"></path> |
| |
| <path d="M24 127c12 8 28 8 40 0 12 8 28 8 40 0" fill="none" stroke="#ffffff" stroke-width="6" stroke-linecap="round"></path> |
| |
| <polygon points="68,30 68,100 110,76"></polygon> |
| <polygon points="68,30 40,60 68,72"></polygon> |
| </svg> |
| </div> |
| <div class="label">Boating</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| |
| <path d="M120 40a40 40 0 1 1-60 60 60 60 0 0 0 60-60z"></path> |
| |
| <circle cx="58" cy="78" r="10"></circle> |
| <path d="M48 98c18 4 30 2 42-6" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <path d="M55 88l-8 20" stroke="#ffffff" stroke-width="10" stroke-linecap="round" fill="none"></path> |
| </svg> |
| </div> |
| <div class="label">Kitesurfing</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| |
| <polygon points="60,28 110,60 60,104"></polygon> |
| |
| <path d="M38 114c32 0 68 0 84 8" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| |
| <path d="M40 130c12 8 28 8 40 0 12 8 28 8 40 0" fill="none" stroke="#ffffff" stroke-width="6" stroke-linecap="round"></path> |
| |
| <circle cx="50" cy="96" r="8"></circle> |
| </svg> |
| </div> |
| <div class="label">Windsurfing</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <circle cx="72" cy="58" r="10"></circle> |
| <path d="M62 74l24 10-18 16" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <path d="M40 110h80" stroke="#ffffff" stroke-width="10" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="label">Surfing</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <path d="M30 80c20-20 70-20 90 0-20 20-70 20-90 0z"></path> |
| <polygon points="120,80 140,92 120,104"></polygon> |
| <circle cx="88" cy="78" r="5" fill="#223f48"></circle> |
| </svg> |
| </div> |
| <div class="label">Fishing</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <circle cx="50" cy="50" r="18"></circle> |
| <circle cx="110" cy="50" r="18"></circle> |
| <circle cx="50" cy="110" r="18"></circle> |
| <circle cx="110" cy="110" r="18"></circle> |
| <path d="M50 68v24M68 50h24M110 92v-24M92 110H68" stroke="#223f48" stroke-width="6" fill="none"></path> |
| </svg> |
| </div> |
| <div class="label">Drones</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <circle cx="52" cy="112" r="22"></circle> |
| <circle cx="110" cy="112" r="22"></circle> |
| <circle cx="80" cy="52" r="9"></circle> |
| <path d="M78 62l-18 30 28 0 12-20" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="label">Bicycling</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <path d="M30 44c30-24 70-24 100 0" stroke="#ffffff" stroke-width="12" fill="none" stroke-linecap="round"></path> |
| <path d="M80 44v26" stroke="#ffffff" stroke-width="8" stroke-linecap="round"></path> |
| <circle cx="80" cy="86" r="10"></circle> |
| <path d="M70 98l-10 18M90 98l10 18" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="label">Paragliding</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <path d="M40 104c30-20 50-20 80 0" stroke="#ffffff" stroke-width="12" fill="none" stroke-linecap="round"></path> |
| <circle cx="70" cy="78" r="9"></circle> |
| <path d="M52 86l56 36" stroke="#ffffff" stroke-width="8" stroke-linecap="round"></path> |
| <rect x="36" y="112" width="88" height="10" rx="5" ry="5"></rect> |
| </svg> |
| </div> |
| <div class="label">Kayaking</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <circle cx="70" cy="50" r="10"></circle> |
| <path d="M60 64l18 10-10 20" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <path d="M36 122l92-22" stroke="#ffffff" stroke-width="8" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="label">Winter sports</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <rect x="36" y="110" width="88" height="10" rx="5" ry="5"></rect> |
| <circle cx="72" cy="58" r="10"></circle> |
| <path d="M68 70l2 30" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <path d="M100 50l-4 64" stroke="#ffffff" stroke-width="8" fill="none" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="label">SUP</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <circle cx="60" cy="64" r="10"></circle> |
| <path d="M70 72l30 18" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <path d="M86 100l22 18" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <path d="M40 120c30-10 60-10 80 0" stroke="#ffffff" stroke-width="8" fill="none" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="label">Diving</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <circle cx="72" cy="60" r="10"></circle> |
| <path d="M60 76l24 8-14 16" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <path d="M40 112h80" stroke="#ffffff" stroke-width="10" stroke-linecap="round"></path> |
| <path d="M80 96v24" stroke="#ffffff" stroke-width="8" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="label">Foiling</div> |
| </div> |
|
|
| |
| <div class="sport"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <circle cx="80" cy="46" r="10"></circle> |
| <path d="M74 56l20 12-12 20" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <path d="M70 92l-18 16" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <path d="M92 92l18 16" stroke="#ffffff" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="label">Running</div> |
| </div> |
|
|
| |
| <div class="sport other"> |
| <div class="icon"> |
| <svg viewBox="0 0 160 160"> |
| <circle cx="90" cy="46" r="10"></circle> |
| <path d="M84 56l-16 28" stroke="#18F5B0" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <path d="M68 84l-18 36" stroke="#18F5B0" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <path d="M100 64l30 44" stroke="#18F5B0" stroke-width="10" fill="none" stroke-linecap="round"></path> |
| <rect x="42" y="118" width="88" height="10" rx="5" ry="5" fill="#18F5B0"></rect> |
| </svg> |
| </div> |
| <div class="label">Other</div> |
| </div> |
| </div> |
|
|
| |
| <div class="cta"><span>Select</span></div> |
|
|
| |
| <div class="home-indicator"></div> |
|
|
| </div> |
| </body> |
| </html> |