mirror of
https://github.com/getAlby/hub.git
synced 2026-08-13 12:33:39 +02:00
26 lines
682 B
HTML
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>
|