mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-03 18:21:20 +00:00
18 lines
479 B
Svelte
18 lines
479 B
Svelte
<script lang="ts">
|
|
import { Separator } from "$lib/components/ui/separator";
|
|
import AccountForm from "./account-form.svelte";
|
|
import type { PageData } from "./$types";
|
|
|
|
export let data: PageData;
|
|
</script>
|
|
|
|
<div class="space-y-6">
|
|
<div>
|
|
<h3 class="text-lg font-medium">Account</h3>
|
|
<p class="text-sm text-muted-foreground">
|
|
Update your account settings. Set your preferred language and timezone.
|
|
</p>
|
|
</div>
|
|
<Separator />
|
|
<AccountForm data={data.form} />
|
|
</div>
|