Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <link rel="icon" type="image/jpeg" href="/assets/favicon.jpeg" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Pochi</title> | |
| <!-- Prevent FOUC: Apply theme class before CSS loads --> | |
| <script> | |
| (function () { | |
| try { | |
| var darkMode = localStorage.getItem('darkMode'); | |
| if (darkMode === 'true' || (darkMode === null && window.matchMedia('(prefers-color-scheme: dark)').matches)) { | |
| document.documentElement.classList.add('dark'); | |
| } else { | |
| document.documentElement.classList.add('light'); | |
| } | |
| } catch (e) { } | |
| })(); | |
| </script> | |
| </head> | |
| <body> | |
| <div id="root"></div> | |
| <script type="module" src="/src/main.jsx"></script> | |
| </body> | |
| </html> |