index.html raw

   1  <!doctype html>
   2  <html lang="en" class="min-h-screen">
   3    <head>
   4      <meta charset="utf-8" />
   5      <meta name="viewport" content="width=device-width,initial-scale=1" />
   6      <title>Alby Hub</title>
   7  
   8      <link
   9        href="icon-lightmode.svg"
  10        rel="icon"
  11        media="(prefers-color-scheme: light)"
  12      />
  13      <link
  14        href="icon-darkmode.svg"
  15        rel="icon"
  16        media="(prefers-color-scheme: dark)"
  17      />
  18      <link rel="apple-touch-icon" href="/icon-512.png" />
  19  
  20      <meta name="theme-color" content="#000000" />
  21    </head>
  22    <body class="min-h-screen">
  23      <div id="root" class="min-h-screen"></div>
  24      <script type="module" src="/src/main.tsx"></script>
  25    </body>
  26  </html>
  27