From 736148c1602069f08b3b2fc3b53411ef8af6a564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Balogh=20Barnab=C3=A1s?= Date: Tue, 23 Dec 2025 21:32:22 +0100 Subject: [PATCH] Add animated snowfall background component --- src/lib/components/Snowfall.svelte | 127 +++++++++++++++++++++++++++++ src/routes/+layout.svelte | 21 ++++- 2 files changed, 147 insertions(+), 1 deletion(-) create mode 100644 src/lib/components/Snowfall.svelte diff --git a/src/lib/components/Snowfall.svelte b/src/lib/components/Snowfall.svelte new file mode 100644 index 0000000..3b83393 --- /dev/null +++ b/src/lib/components/Snowfall.svelte @@ -0,0 +1,127 @@ + + + + + diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 2d98d65..e45cb52 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,7 +1,26 @@ -{@render children?.()} \ No newline at end of file + + +
+ {@render children?.()} +
+ + \ No newline at end of file