auth initiate, database and more

This commit is contained in:
DecDuck
2024-10-08 13:17:06 +11:00
parent 78fc668923
commit 22b1aeec9f
43 changed files with 956 additions and 84 deletions
+17
View File
@@ -0,0 +1,17 @@
<template>
<div
@mousedown="() => window.startDragging()"
class="cursor-pointer flex flex-row items-center justify-between bg-zinc-950 px-3 py-2"
>
<div>
<Wordmark />
</div>
<WindowControl />
</div>
</template>
<script setup lang="ts">
import { getCurrentWindow } from "@tauri-apps/api/window";
const window = getCurrentWindow();
</script>