[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto skywatched.app
0

Configure Feed

Select the types of activity you want to include in your feed.

skywatched / src / routes / +layout.svelte
821 B 32 lines
1<script lang="ts"> 2 import Logo from '$lib/Components/Logo.svelte'; 3 import '../app.css'; 4 let { children } = $props(); 5 // deploy 6</script> 7 8<header class="absolute inset-x-0 top-0 z-50"> 9 <nav class="flex items-center justify-between p-6 lg:px-8" aria-label="Global"> 10 <div class="flex lg:flex-1"> 11 <a href="/" class="-m-1.5 p-1.5"> 12 <span class="sr-only">nyx</span> 13 14 <Logo class="size-8" /> 15 </a> 16 </div> 17 <div class="flex flex-1 justify-end"> 18 <a 19 href="/login" 20 class="text-sm/6 font-semibold text-white transition-colors duration-75 hover:text-accent-400" 21 >account <span aria-hidden="true">&rarr;</span></a 22 > 23 </div> 24 </nav> 25</header> 26 27{@render children()} 28 29<div 30 style="background-image: url(/nnnoise.svg)" 31 class="pointer-events-none fixed inset-0 z-50 size-full opacity-70" 32></div>