templates/components/footer_landing.html.twig line 1
<footer class="bg-[#ffcc00] text-black py-5 px-4">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row items-center gap-4 md:gap-12">
<div class="flex items-center gap-2 -ml-4">
<img src="{{ asset('/images/site/logo_footer.png') }}" alt="Roomlers Logo" class="h-16">
<h2 class="text-2xl font-bold">{{ 'footer.roomlers'|trans }}</h2>
</div>
<div class="text-2xl font-bold text-left md:w-2/5 md:ml-20 lg:ml-80">
{{ 'footer.tagline'|trans|raw }}
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mt-8">
<div>
<h3 class="text-xl font-bold mb-4">{{ 'footer.roomlers'|trans }}</h3>
<ul class="space-y-2">
<li><a href="{{ path('qui') }}" class="hover:underline">{{ 'footer.about_us'|trans }}</a></li>
<li><a href="{{ path('services') }}" class="hover:underline">{{ 'footer.our_services'|trans }}</a></li>
<li><a href="{{ path('partenaire') }}" class="hover:underline">{{ 'footer.our_partners'|trans }}</a></li>
<li><a href="{{ path('contact') }}" class="hover:underline">{{ 'footer.contact_us'|trans }}</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold mb-4">{{ 'footer.help_and_advice'|trans }}</h3>
<ul class="space-y-2">
<li><a href="{{ path('attestation') }}" class="hover:underline">{{ 'footer.accommodation_prereservation'|trans }}</a></li>
<li><a href="{{ path('assurance') }}" class="hover:underline">{{ 'footer.home_insurance'|trans }}</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold mb-4">{{ 'footer.guides'|trans }}</h3>
<ul class="space-y-2">
<!-- Hidden Links -->
</ul>
</div>
</div>
<div class="mt-8 text-center text-sm">
<p>
<span id="copyright"></span> |
<a href="{{ path('mentions_legales') }}" class="hover:underline">{{ 'footer.legal_notices'|trans }}</a> |
<a href="{{ path('cookies') }}" class="hover:underline">{{ 'footer.cookie_policy'|trans }}</a> |
<a href="{{ path('privacy') }}" class="hover:underline">{{ 'footer.privacy_policy'|trans }}</a> |
<a href="{{ path('cgv') }}" class="hover:underline">{{ 'footer.terms_and_conditions'|trans }}</a>
</p>
<div class="flex justify-center items-center mt-4 space-x-4">
<a href="https://www.instagram.com/roomlers/" target="_blank" rel="noopener noreferrer">
<img src="{{ asset('/images/icons/instagram.png') }}" alt="Instagram" class="h-6">
</a>
<a href="https://www.linkedin.com/company/roomlers/" target="_blank" rel="noopener noreferrer">
<img src="{{ asset('/images/icons/linkedin.png') }}" alt="LinkedIn" class="h-6">
</a>
<a href="https://www.facebook.com/roomlers?locale=fr_FR" target="_blank" rel="noopener noreferrer">
<img src="{{ asset('/images/icons/noir.png') }}" alt="Facebook" class="h-6">
</a>
</div>
</div>
</div>
</footer>
<script>
// Récupérer l'élément copyright
const copyrightElement = document.getElementById('copyright');
// Obtenir l'année en cours
const currentYear = new Date().getFullYear();
// Définir le texte du copyright
copyrightElement.textContent = `© ${currentYear} Roomlers`;
</script>