Header-Navigation: Logo links, Nav-Punkte zentriert (3-Spalten-Grid), CTAs rechts (Kontakt outline + Mitglied werden), responsiv: Burger + Overlay-CTAs unter 600px

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-06-11 21:45:28 +02:00
parent 88b3100b64
commit c63ba642af
5 changed files with 78 additions and 10 deletions

View File

@@ -24,10 +24,10 @@ $href = static function (string $slug): string {
<a href="<?= e($href($item['slug'])) ?>"<?= $item['slug'] === $current ? ' aria-current="page"' : '' ?>><?= e($item['label']) ?></a>
</li>
<?php endforeach; ?>
<?php if (!empty($nav['cta'])): ?>
<li>
<a class="btn" href="<?= e($href($nav['cta']['slug'])) ?>"><?= e($nav['cta']['label']) ?></a>
<?php foreach ($nav['ctas'] ?? [] as $cta): ?>
<li class="site-nav__cta">
<?php component('cta', ['cta' => $cta]); ?>
</li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
</nav>