feat: add desktop2

This commit is contained in:
2024-02-11 09:30:18 +07:00
parent 35c5b5fb78
commit c809ab6b4e
18 changed files with 697 additions and 2927 deletions

17
apps/desktop2/index.html Normal file
View File

@@ -0,0 +1,17 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lume Desktop</title>
</head>
<body
class="relative w-screen h-screen overflow-hidden font-sans antialiased cursor-default select-none text-neutral-950 dark:text-neutral-50">
<div class="fixed top-0 left-0 z-50 w-full h-9" data-tauri-drag-region></div>
<div id="root"></div>
<script type="module" src="/src/app.tsx"></script>
</body>
</html>