blob: f45c6024001b625e9c27ce8028e2a10fabb37018 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<script lang="ts">
import '../app.scss'
import WaveLeft from '$lib/assets/wave1.svg?url'
import WaveRight from '$lib/assets/wave2.svg?url'
interface Props {
children?: import('svelte').Snippet;
}
let { children }: Props = $props();
</script>
<img src={WaveLeft} alt="" class="wave wave1" />
<img src={WaveRight} alt="" class="wave wave2" />
<div class="container">
{@render children?.()}
</div>
|