index.html 804 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Tailscale Connect</title>
  7. <link rel="stylesheet" type="text/css" href="dist/index.css" />
  8. <script src="dist/index.js" defer></script>
  9. </head>
  10. <body class="flex flex-col h-screen overflow-hidden">
  11. <!-- Placeholder so that we don't have an empty page while the JS loads.
  12. It should match the markup generated by Header component. -->
  13. <div class="bg-gray-100 border-b border-gray-200 pt-4 pb-2">
  14. <header class="container mx-auto px-4 flex flex-row items-center">
  15. <h1 class="text-3xl font-bold grow">Tailscale Connect</h1>
  16. <div class="text-gray-600">Loading…</div>
  17. </header>
  18. </div>
  19. </body>
  20. </html>