aboutsummaryrefslogtreecommitdiff
path: root/src/routes/+layout.svelte
blob: 856ee27327c8a2ad7e7626a285155412c51b2924 (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>