website/src/layouts/Content.astro

21 lines
410 B
Plaintext
Raw Normal View History

2024-07-08 17:34:54 +02:00
---
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>