aboutsummaryrefslogtreecommitdiffstats
path: root/website/src/routes/+layout.svelte
blob: 48f0b785f59fbd38bdcc771a952191894e0b4e40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script lang="ts">
    import favicon from '$lib/assets/favicon.svg';
    import NavigationBar from '$lib/components/header/navigation-bar.svelte';
    import '../app.css';

    let { children } = $props();
</script>

<svelte:head>
    <link rel="icon" href={favicon} />
</svelte:head>

<div class="flex min-h-screen w-screen">
    <NavigationBar />
    <div class="flex w-full items-center justify-center">
        {@render children()}
    </div>
</div>