Migrate to Astro and split components

This commit is contained in:
Felix Brabetz
2026-05-16 01:46:08 +02:00
parent a4b1ba7d79
commit 35fc67cd6e
19 changed files with 953 additions and 197 deletions
+13
View File
@@ -0,0 +1,13 @@
---
// src/components/Footer.astro
---
<!-- Footer -->
<footer class="bg-stone-950 py-16 text-stone-500 border-t border-stone-900 text-sm text-center">
<div class="max-w-7xl mx-auto px-6">
<p class="font-luxury text-white mb-2 tracking-wider">Gebrüder Brabetz GmbH &copy; 2026</p>
<p class="text-xs text-stone-600 mb-6">Meisterbetrieb für Garten- & Landschaftsbau // Rheingau-Taunus-Kreis</p>
<button @click="currentPage = 'page-contact'" class="text-amber-500 hover:text-amber-400 underline text-xs font-semibold uppercase tracking-wider transition-colors">
Direktlink zur Bauleitung
</button>
</div>
</footer>