mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-29 00:11:21 +00:00
19 lines
544 B
Svelte
19 lines
544 B
Svelte
<script lang="ts">
|
|
import { Separator } from '$lib/components/ui/separator';
|
|
import type { PageData } from './$types';
|
|
import AppearanceForm from './appearance-form.svelte';
|
|
|
|
export let data: PageData;
|
|
export let { form, user } = data;
|
|
</script>
|
|
|
|
<div class="space-y-6">
|
|
<div>
|
|
<h3 class="text-lg font-medium">Appearance</h3>
|
|
<p class="text-sm text-muted-foreground">
|
|
Customize the appearance of the app. Automatically switch between day and night themes.
|
|
</p>
|
|
</div>
|
|
<Separator />
|
|
<AppearanceForm data={form} {user} />
|
|
</div>
|