three60/src/lib/components/Navbar.svelte
Markus Brueckner 1547af6ae0 Initial commit
2024-11-25 08:40:14 +01:00

14 lines
351 B
Svelte

<script lang="ts">
import type { HTMLAttributes } from 'svelte/elements';
type Props = {
title: string;
} & HTMLAttributes<HTMLElement>;
const { title, children }: Props = $props();
</script>
<nav class="mb-2 grid grid-cols-2 bg-indigo-800 p-3 text-white">
<h1 class="justify-self-start text-3xl">{title}</h1>
{@render children?.()}
</nav>