mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-08 12:41:20 +00:00
18 lines
507 B
Svelte
18 lines
507 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;
|
|
</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={data.form} />
|
|
</div>
|