Datenschutz und Impressum hinzugefügt
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 9s

This commit is contained in:
2026-03-31 12:26:42 +02:00
parent 11a9227dd0
commit a44d1363cd
11 changed files with 323 additions and 31 deletions

View File

@@ -0,0 +1,11 @@
---
import MainLayout from './MainLayout.astro';
import '../styles/global.css';
const { frontmatter } = Astro.props;
---
<MainLayout title={frontmatter.title}>
<article class="prose prose-slate mx-auto ">
<h1 class="text-3xl font-bold mb-8">{frontmatter.title}</h1>
<slot />
</article>
</MainLayout>