mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-05 20:26:43 +02:00
14 lines
254 B
Plaintext
14 lines
254 B
Plaintext
---
|
|
import DefaultLayout from './DefaultLayout.astro'
|
|
|
|
const { frontmatter } = Astro.props
|
|
---
|
|
|
|
<DefaultLayout title={frontmatter.title}>
|
|
<div class="container">
|
|
<div class="space-content my-12">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</DefaultLayout>
|