mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-22 14:51:45 +00:00
557de4cd5a
- Web app manifest (standalone display, NOMAD branding, icons) - Service worker with Workbox caching (map tiles, API, uploads, CDN) - SVG app icon + PNG generation script via sharp - Apple meta tags (web-app-capable, black-translucent status bar) - Dynamic theme-color for dark/light mode - Safe area insets for notch devices
15 lines
582 B
XML
15 lines
582 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
<defs>
|
|
<linearGradient id="bg" x1="0" y1="0" x2="1" y2="1">
|
|
<stop offset="0%" stop-color="#1e293b"/>
|
|
<stop offset="100%" stop-color="#0f172a"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<!-- Background -->
|
|
<rect width="512" height="512" fill="url(#bg)"/>
|
|
<!-- Navigation arrow (upper-left wing — brighter) -->
|
|
<polygon points="128,249 384,128 236,276" fill="#ffffff"/>
|
|
<!-- Navigation arrow (lower-right wing — subtle depth) -->
|
|
<polygon points="384,128 263,384 236,276" fill="#e2e8f0"/>
|
|
</svg>
|