- Service worker, manifest, and SVG icon for PWA installability - Root /sw.js route for full-scope service worker registration - Meta tags: theme-color, apple-mobile-web-app, viewport-fit=cover - Safe area insets for notched phones (container, mini-player, footer, banner) - Dynamic theme-color sync on light/dark toggle - Overscroll prevention and touch-action optimization - Hide mini-player prev/next buttons on small screens - Updated README with PWA and new feature documentation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
421 B
XML
11 lines
421 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#1db954;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#1ed760;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<circle cx="50" cy="50" r="45" fill="url(#grad)"/>
|
|
<path fill="white" d="M35 25 L35 75 L75 50 Z"/>
|
|
</svg>
|