🛠️ build(astro): nuxtjs to astro

This commit is contained in:
Eshan Roy (Eshanized)
2024-06-16 23:19:02 +05:30
parent 8f7130024e
commit ec3cafabd8
58 changed files with 12225 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
---
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>