alby-hub/frontend/index.html
René Aaron 99e271259a
fix: branding (#1890)
* fix: update alby bee icon

* fix: favicons

* fix: new icons
2025-11-07 09:29:10 +01:00

26 lines
682 B
HTML

<!doctype html>
<html lang="en" class="min-h-screen">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Alby Hub</title>
<link
href="icon-lightmode.svg"
rel="icon"
media="(prefers-color-scheme: light)"
/>
<link
href="icon-darkmode.svg"
rel="icon"
media="(prefers-color-scheme: dark)"
/>
<link rel="apple-touch-icon" href="/icon-512.png" />
<meta name="theme-color" content="#000000" />
</head>
<body class="min-h-screen">
<div id="root" class="min-h-screen"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>