21 lines
410 B
Plaintext
21 lines
410 B
Plaintext
|
---
|
||
|
import Layout from './Layout.astro'
|
||
|
import Prose from '../components/Prose.astro'
|
||
|
|
||
|
interface Props {
|
||
|
title: string;
|
||
|
image?: string;
|
||
|
description?: string;
|
||
|
}
|
||
|
|
||
|
const {title, description, image} = Astro.props
|
||
|
---
|
||
|
|
||
|
<Layout title={title} type="text" image={image} description={description}>
|
||
|
<main class="mx-auto max-w-screen-lg">
|
||
|
<Prose>
|
||
|
<slot/>
|
||
|
</Prose>
|
||
|
</main>
|
||
|
</Layout>
|