add mock settings page

This commit is contained in:
Yusur 2025-10-21 14:32:16 +02:00
parent c0b9ad57db
commit f6cb4fed12
3 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<script lang="ts">
import MenuLink from "$lib/MenuLink.svelte";
import SLayout from "$lib/SLayout.svelte";
import { RiBrush2Line } from "svelte-remixicon";
let { children } = $props();
</script>
<SLayout title="Settings">
{@render children()}
{#snippet left()}
<ul class="column">
<MenuLink href="/settings/appearance" icon={RiBrush2Line} label="Appearance" />
</ul>
{/snippet}
{#snippet right()}
<button class="primary card">Save</button>
{/snippet}
</SLayout>

View file

@ -0,0 +1,2 @@
Select a setting from the left menu to change its settings

View file

@ -0,0 +1,2 @@
TODO