refactor: unify catalog page heroes
CI / backend-and-migrations (push) Canceled after 0s
CI / astro-build (push) Canceled after 0s
CI / dependency-audit (push) Canceled after 0s
CI / compose-e2e (push) Canceled after 0s

This commit is contained in:
ik
2026-09-12 09:59:14 +07:00
parent 9647667ae2
commit c944db54af
9 changed files with 23 additions and 7 deletions
+8
View File
@@ -0,0 +1,8 @@
---
const { eyebrow, title, description } = Astro.props as { eyebrow: string; title: string; description?: string };
---
<section class="catalog-hero content-grid">
<span class="overline">{eyebrow}</span>
<h1>{title}</h1>
{description && <p>{description}</p>}
</section>