Client side atproto account migrator in your web browser, along with services for backups and adversarial migrations.
0

Configure Feed

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

pds-moover / web-ui / src / routes / +layout.svelte
345 B 20 lines
1<script lang="ts"> 2 import favicon from '$lib/assets/moo.webp'; 3 import '$lib/assets/style.css' 4 import NavBar from '$lib/components/NavBar.svelte'; 5 6 let {children} = $props(); 7 8 9</script> 10 11<svelte:head> 12 <link rel="icon" href={favicon}/> 13</svelte:head> 14 15 16<NavBar/> 17 18<main class="page-content"> 19 {@render children?.()} 20</main>