This commit is contained in:
Lyz Coote
2026-02-02 18:41:13 +01:00
commit d6a5cb8a67
161 changed files with 8630 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<script lang="ts">
import { onMount } from 'svelte';
let { children } = $props();
onMount(() => {
const loader = document.getElementById('app-loading');
if (loader) {
loader.style.opacity = '0';
setTimeout(() => {
loader.remove();
}, 300);
}
});
</script>
{@render children()}