mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
11 lines
No EOL
209 B
Text
11 lines
No EOL
209 B
Text
---
|
|
import BaseLayout from './base.astro';
|
|
|
|
const { frontmatter } = Astro.props;
|
|
---
|
|
|
|
<BaseLayout title={frontmatter.title}>
|
|
<div class="middle-pane-medium mt-10">
|
|
<slot />
|
|
</div>
|
|
</BaseLayout> |