2024-03-16 13:46:10 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>Tauri App</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2024-04-05 04:24:34 +00:00
|
|
|
<div data-tauri-drag-region class="titlebar">
|
|
|
|
<div class="titlebar-button" id="titlebar-close">
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
width="24"
|
|
|
|
height="24"
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
fill="none"
|
|
|
|
stroke="currentColor"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linejoin="round"
|
|
|
|
class="lucide lucide-circle-x"
|
|
|
|
>
|
|
|
|
<circle cx="12" cy="12" r="10" />
|
|
|
|
<path d="m15 9-6 6" />
|
|
|
|
<path d="m9 9 6 6" />
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
<div class="titlebar-button" id="titlebar-minimize">
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
width="24"
|
|
|
|
height="24"
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
fill="none"
|
|
|
|
stroke="currentColor"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linejoin="round"
|
|
|
|
class="lucide lucide-circle-minus"
|
|
|
|
>
|
|
|
|
<circle cx="12" cy="12" r="10" />
|
|
|
|
<path d="M8 12h8" />
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
<div class="titlebar-button" id="titlebar-maximize">
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
width="24"
|
|
|
|
height="24"
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
fill="none"
|
|
|
|
stroke="currentColor"
|
|
|
|
stroke-width="2"
|
|
|
|
stroke-linecap="round"
|
|
|
|
stroke-linejoin="round"
|
|
|
|
class="lucide lucide-circle-plus"
|
|
|
|
>
|
|
|
|
<circle cx="12" cy="12" r="10" />
|
|
|
|
<path d="M8 12h8" />
|
|
|
|
<path d="M12 8v8" />
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-03-16 13:46:10 +00:00
|
|
|
<div id="root" />
|
|
|
|
<script type="module" src="/src/main.ts" defer></script>
|
|
|
|
</body>
|
|
|
|
</html>
|