mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-05-07 06:21:22 +00:00
14 lines
315 B
Svelte
14 lines
315 B
Svelte
<script lang="ts">
|
|
import { Timeline } from '$lib/components/site/timeline';
|
|
import { page } from '$app/stores';
|
|
import { SiteHeader } from '$lib/components/site';
|
|
|
|
$: title = $page.data.title;
|
|
$: subTitle = $page.data.subTitle;
|
|
</script>
|
|
|
|
<SiteHeader {title} {subTitle} />
|
|
|
|
<section>
|
|
<Timeline />
|
|
</section>
|