+layout.svelte (359B)
1 <script lang="ts"> 2 import Nav from "$lib/components/nav.svelte"; 3 import type { LayoutProps } from "./$types"; 4 5 let { children }: LayoutProps = $props(); 6 </script> 7 8 <div 9 class={`relative flex flex-col min-h-[100vh] w-full justify-start items-center overflow-hidden bg-morning_snow cursor-default`} 10 > 11 <Nav /> 12 {@render children()} 13 </div>