mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
Signed-off-by: Taylor Ho <taylorkmho@gmail.com> Co-authored-by: npub1223z34hd7vtwc6qj4s7flsxkj644nlre2nthu7lrrmkumhu3xddsrx9r6w <52a228d6edf316ec6812ac3c9fc0d696ab59fc7954d77e7be31eedcddf91335b@sprout-oss.stage.blox.sqprod.co>
28 lines
866 B
HTML
28 lines
866 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/buzz.svg?v=20260610" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title></title>
|
|
<!--
|
|
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>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|