website/src/routes/+layout.svelte

14 lines
294 B
Svelte
Raw Normal View History

2023-11-05 23:02:42 +00:00
<script>
import '../app.scss';
import Navbar from '$lib/components/Navbar.svelte';
2023-11-05 23:02:42 +00:00
import { fly } from 'svelte/transition';
export let data;
</script>
{#key data.pathname}
2023-11-15 19:02:58 +00:00
<main in:fly={{ x: -10, duration: 250, delay: 250 }} out:fly={{ x: 5, duration: 250 }}>
2023-11-05 23:02:42 +00:00
<slot />
</main>
{/key}