mirror of
https://github.com/Ku6epXBOCTuK/easy-png-tools.git
synced 2026-09-14 21:46:35 +00:00
20 lines
388 B
Svelte
20 lines
388 B
Svelte
<script lang="ts">
|
|
import favicon from '$lib/assets/favicon.svg';
|
|
import { onMount } from 'svelte';
|
|
import { initLocale } from '$lib/i18n/locale.svelte';
|
|
import { initTheme } from '$lib/theme.svelte';
|
|
|
|
let { children } = $props();
|
|
|
|
onMount(() => {
|
|
initLocale();
|
|
initTheme();
|
|
});
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<link rel="icon" href={favicon} />
|
|
</svelte:head>
|
|
|
|
{@render children()}
|