<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>

    <style>
      @import "tailwindcss";
    </style>
  </head>
  <body>
    <div id="app"></div>
    <script type="module">
      import { mount } from "svelte";
      import App from "./src/App.svelte";

      mount(App, { target: document.getElementById("app") });
    </script>
  </body>
</html>