Files
horse/zenno/src/routes/doc/+page.svelte
T
zephyr 009dd1d695
ci/woodpecker/push/horsebot Pipeline was successful
ci/woodpecker/push/zenno Pipeline was successful
zenno: add page titles and descriptions
2026-07-12 14:37:43 -04:00

12 lines
342 B
Svelte

<script lang="ts">
import { page } from '$app/state';
import * as all from '$lib/all';
import IndexSection from '$lib/IndexSection.svelte';
const cur = $derived(all.page(page.route.id));
</script>
<h1 class="m-8 text-center text-7xl">Zenno Rob Roy &mdash; {cur.name}</h1>
<p>{cur.description}</p>
<IndexSection pages={all.PAGES.doc} />