All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 1m5s
18 lines
484 B
Svelte
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>
|