my-portfolio/src/routes/+layout.svelte
hook-lord df73c9911a
All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 1m5s
upgraded to svelte 5
2024-12-06 10:46:07 +01:00

18 lines
484 B
Svelte

<script lang="ts">
import '../app.css';
import BottomNavigation from '../lib/BottomNavigation.svelte';
import TopNav from '../lib/TopNav.svelte';
let { children } = $props();
</script>
<TopNav />
<div class="px-2 sm:px-0 mx-auto max-w-xs sm:max-w-md md:max-w-3xl mb-20 md:mb-0">
{@render children?.()}
</div>
<BottomNavigation />
<footer class="">
<div class="hidden md:block text-sm text-stone-400 mt-12 text-center">
<p>built by christian rannes 2024</p>
</div>
</footer>