27 lines
840 B
Plaintext
27 lines
840 B
Plaintext
---
|
|
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>
|