12 lines
342 B
Svelte
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 — {cur.name}</h1>
|
|
<p>{cur.description}</p>
|
|
<IndexSection pages={all.PAGES.doc} />
|