Initial Astro static demo

This commit is contained in:
2026-07-07 19:11:38 +02:00
commit 4d46ef287a
67 changed files with 6728 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
---
import BaseLayout from "../layouts/BaseLayout.astro";
import PageHero from "../components/PageHero.astro";
import { downloads } from "../data/site";
---
<BaseLayout title="Downloads" description="Aktuelle Bescheinigungen und Nachweise der Heinz Heidrich GmbH als PDF herunterladen.">
<PageHero
title="Downloads"
kicker="Nachweise und Bescheinigungen"
text="Alle wichtigen PDF-Dokumente für Auftraggeber, Buchhaltung und Projektabwicklung."
/>
<section class="section">
<div class="container">
<div class="downloads">
{downloads.map((download) => (
<article class="download-row">
<h2>{download.title}</h2>
<a class="button primary" href={download.href} download>Herunterladen</a>
</article>
))}
</div>
</div>
</section>
</BaseLayout>