Spaces:
Running
Running
File size: 489 Bytes
db39944 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<script lang="ts">
import type { PageData } from './$types'
export let data: PageData
</script>
<!-- SEO -->
<svelte:head>
<title>{data.snippet.title}</title>
<meta property="og:type" content="article" />
<meta property="og:title" content={data.snippet.title} />
<meta name="description" content={data.snippet.description} />
</svelte:head>
<article class="max-w-3xl mx-auto px-4 py-8">
<div class="prose max-w-none">
<svelte:component this={data.content} />
</div>
</article> |