lume/apps/desktop/index.html

14 lines
421 B
HTML
Raw Normal View History

2023-10-08 11:01:19 +00:00
<html lang="en">
2023-06-24 11:31:40 +00:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lume</title>
</head>
2023-12-04 05:17:16 +00:00
<body
2024-01-05 00:31:08 +00:00
class="relative w-screen h-screen overflow-hidden font-sans antialiased cursor-default select-none text-neutral-950 dark:text-neutral-50"
2023-12-04 05:17:16 +00:00
>
2023-06-24 11:31:40 +00:00
<div id="root"></div>
2023-12-25 07:28:39 +00:00
<script type="module" src="./src/main.jsx"></script>
2023-06-24 11:31:40 +00:00
</body>
</html>