Files
FND e1ce7dabe1 feat(ui): Totman/Classic P favicon style switcher (#1325)
Favicon style switcher in Settings > Theme: the Totman mascot or the historical dark-navy P tile (byte-identical to the pre-Totman asset, sha256 pinned). Served server-side from first paint in both runtimes; opt-in for hosts of the published UI package. Contributed by @FNDEVVE
2026-08-16 21:58:46 -07:00

18 lines
677 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>Plannotator</title>
<!-- No type/sizes: /favicon.png is served by the Plannotator server, which
picks the bytes from the persisted favicon style, so the response
Content-Type is the only truthful declaration. See handleFavicon(). -->
<link rel="icon" href="/favicon.png">
</head>
<body class="overflow-hidden overscroll-none antialiased">
<div id="root" class="h-full overflow-hidden"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>