dialog-relations-website/packages/base/Resources/Private/PageView/Layouts/Default.html
Dominik Polakovics 2e0980ca7e
All checks were successful
Build / build (push) Successful in 4m9s
Build / deploy-stage (push) Successful in 2m43s
Build / switch-stage (push) Successful in 1m59s
feat: change email and phone number
2025-05-09 14:33:14 +02:00

83 lines
3.1 KiB
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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 &mdash; 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>