Initial commit

This commit is contained in:
hiperman
2025-12-04 00:33:37 -05:00
commit 7ca0a21283
798 changed files with 190424 additions and 0 deletions
@@ -0,0 +1,23 @@
<script lang="ts">
import { goto } from '$app/navigation';
import { logout } from '$lib/api';
import { Button } from '$lib/components/ui/button/index.js';
import { LogOut } from '@lucide/svelte';
</script>
<h1 class="text-lg font-semibold">Account Settings</h1>
<p class="text-sm text-muted-foreground">Manage your account</p>
<div class="mt-4 flex flex-col gap-2">
<Button
onclick={async () => {
await logout();
goto('/login');
}}
variant="outline"
class="w-32"
>
<LogOut />
Logout
</Button>
</div>