Initial Astro static demo
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user