2026-03-09 13:02:11 -07:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
2026-06-11 08:06:24 -07:00
|
|
|
<link rel="icon" type="image/svg+xml" href="/buzz.svg?v=20260610" />
|
2026-03-09 13:02:11 -07:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<title></title>
|
2026-07-07 08:38:00 -07:00
|
|
|
<!--
|
|
|
|
|
Boot background: the document must be black from its very first paint,
|
|
|
|
|
before the app bundle (and its stylesheets) load, so cold boot never
|
|
|
|
|
flashes white ahead of the loading gate. The window itself is also
|
|
|
|
|
black pre-document via `backgroundColor` in tauri.conf.json. The body
|
|
|
|
|
paints its own themed background once the app CSS loads, so this never
|
|
|
|
|
shows through after boot.
|
|
|
|
|
-->
|
|
|
|
|
<style>
|
|
|
|
|
html {
|
|
|
|
|
background-color: #000;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2026-03-09 13:02:11 -07:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<div id="root"></div>
|
|
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|