home-hosted 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <meta name="color-scheme" content="light dark" />
7
+ <title>home-hosted — control panel</title>
8
+ <script>
9
+ // Applied before the first paint so the shell never flashes the wrong theme.
10
+ ;(function () {
11
+ try {
12
+ var stored = localStorage.getItem('hh.theme')
13
+ var dark = stored === 'dark' || (stored !== 'light' && matchMedia('(prefers-color-scheme: dark)').matches)
14
+ document.documentElement.classList.toggle('dark', dark)
15
+ }
16
+ catch (error) { /* storage unavailable — fall through to light */ }
17
+ })()
18
+ </script>
19
+ <script type="module" crossorigin src="/assets/index-DqcdQi-W.js"></script>
20
+ <link rel="stylesheet" crossorigin href="/assets/index-CmkrtNU0.css">
21
+ </head>
22
+ <body>
23
+ <div id="app"></div>
24
+ </body>
25
+ </html>