84 lines
3.1 KiB
HTML
84 lines
3.1 KiB
HTML
<header class="sticky top-0 left-0 right-0 z-50 bg-primary text-white">
|
||
<!-- Main Navigation -->
|
||
<f:render partial="Navigation/Main" arguments="{_all}" />
|
||
</header>
|
||
|
||
<main>
|
||
<!-- Main Section -->
|
||
<f:render section="Main" />
|
||
</main>
|
||
|
||
<footer class="bg-primary text-white">
|
||
<div class="container mx-auto max-w-7xl px-4 py-12 space-y-10">
|
||
|
||
<!-- ── Row 1 ───────────────────────────────────────── -->
|
||
<div class="grid grid-cols-1 md:grid-cols-3 gap-10">
|
||
|
||
<!-- Logo -->
|
||
<div class="flex flex-col items-start">
|
||
<!-- Replace the src with your logo SVG / file -->
|
||
<f:image src="EXT:base/Resources/Public/Images/logo.svg" alt="Logo" class="block max-h-[100px] h-auto w-auto" />
|
||
</div>
|
||
|
||
<!-- Kontaktiere uns -->
|
||
<div>
|
||
<h3 class="text-white text-sm">Kontaktiere uns</h3>
|
||
<ul class="space-y-4">
|
||
<li class="flex items-center pl-0">
|
||
<!-- mail -->
|
||
<a href="mailto:office@dialog-relations.at" class="hover:text-white text-white">
|
||
office@dialog-relations.at
|
||
</a>
|
||
</li>
|
||
<li class="flex items-center pl-0">
|
||
<!-- phone -->
|
||
<a href="tel:+436763533669" class="hover:text-white text-white">
|
||
+43 676 3533669
|
||
</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<f:comment>
|
||
<!-- Folge uns -->
|
||
<div class="flex flex-col items-start md:items-end">
|
||
<h3 class="text-white text-sm">Folge uns</h3>
|
||
<div class="flex space-x-4">
|
||
<!-- Social buttons -->
|
||
|
||
<a href="#" aria-label="LinkedIn" class="w-10 h-10 text-2xl bg-white text-primary rounded-full inline-flex items-center justify-center hover:bg-white hover:text-primary-dark">
|
||
<i class="ci ci-linkedin"></i>
|
||
</a>
|
||
<a href="#" aria-label="Instagram" class="w-10 h-10 text-2xl bg-white text-primary rounded-full inline-flex items-center justify-center hover:bg-white hover:text-primary-dark">
|
||
<i class="ci ci-instagram"></i>
|
||
</a>
|
||
<a href="#" aria-label="Facebook" class="w-10 h-10 text-2xl bg-white text-primary rounded-full inline-flex items-center justify-center hover:bg-white hover:text-primary-dark">
|
||
<i class="ci ci-facebook"></i>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</f:comment>
|
||
|
||
</div><!-- /Row 1 -->
|
||
|
||
|
||
<!-- ── Row 2 ───────────────────────────────────────── -->
|
||
<div class="flex flex-col-reverse md:flex-row md:justify-between items-start md:items-center text-sm">
|
||
|
||
<!-- Rights reserved -->
|
||
<p class="pt-4 md:pt-0">
|
||
Dialog Relations 2025 — All rights reserved.
|
||
</p>
|
||
|
||
<!-- Privacy links -->
|
||
<p>
|
||
<a href="/datenschutz" class="hover:text-white text-white">Datenschutz</a>
|
||
<span class="mx-1">|</span>
|
||
<a href="/impressum" class="hover:text-white text-white">Impressum</a>
|
||
</p>
|
||
|
||
</div><!-- /Row 2 -->
|
||
|
||
</div>
|
||
</footer>
|