Simple conetent + restyled

This commit is contained in:
2026-09-21 17:59:29 +02:00
parent 0772462742
commit 467bf77d34
55 changed files with 2162 additions and 2070 deletions
+10
View File
@@ -0,0 +1,10 @@
---
import Base from './Base.astro';
import PageHero from '../components/PageHero.astro';
interface Props { title: string }
const { title } = Astro.props;
---
<Base title={title}>
<PageHero title={title} />
<div class="placeholder-body"></div>
</Base>