From ced4e1b89c7ad1500179e6361cfb558e5ad71413 Mon Sep 17 00:00:00 2001 From: Vargha Csongor Date: Sat, 15 Mar 2025 11:04:01 +0100 Subject: [PATCH] add theme button to layout --- app/src/routes/+layout.svelte | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/src/routes/+layout.svelte b/app/src/routes/+layout.svelte index 82a1080..cc57316 100644 --- a/app/src/routes/+layout.svelte +++ b/app/src/routes/+layout.svelte @@ -3,8 +3,12 @@ import { i18n } from '$lib/i18n'; import { ParaglideJS } from '@inlang/paraglide-sveltekit'; let { children } = $props(); + import ThemeButton from '$lib/theme-select.svelte'; {@render children()} +
+ +