feat: pagina about

This commit is contained in:
2026-07-02 01:10:56 +02:00
parent 45e5214417
commit ba89568a38
3 changed files with 214 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
---
interface Props { title: string; eyebrow?: string }
const { title, eyebrow } = Astro.props;
---
<section class="phero">
<div class="container">
{eyebrow && <p class="eyebrow">{eyebrow}</p>}
<h1>{title}</h1>
</div>
</section>
<style>
.phero { background: var(--c-bg-alt); padding-block: 70px; }
.phero h1 { text-transform: lowercase; font-weight: 500; margin: 0; }
</style>