{% extends 'vitrine/base.html.twig' %}
{% block title %}{% trans %} | 1er spa à la bière de France{% endtrans %}{% endblock %}
{% block description %}{% trans %}Découvrez tout l'univers du spa à la bière{% endtrans %}{% endblock %}
{% block main %}
{# {% include "/vitrine/components/loading/loading.html.twig" %} #}
<div class="w-full flexcol items-center z-10 relative">
{# Section Video #}
<section class="max-w-none relative h-[101vh] overflow-hidden -z-50 p-0">
<div id="overlay-video" class="w-full h-full inset-0 z-0">
<video id="video" class="w-full h-full object-cover" playsinline muted autoplay loop >
<source src="{{ asset('vitrine/video-entree.mp4') }}" type="video/mp4">
</video>
<div class="absolute w-full h-full top-0 left-0 flex justify-center items-end">
<div class="min-h-2/5 p-8 mb-3 flex justify-center items-center flex-col gap-4">
<div class="flexcol items-center gap-2">
<img class="h-28 hero-logo" alt="Logo Taaka" src="{{ asset('vitrine/logo/logo-full-white.png') }}">
</div>
</div>
</div>
<div class="w-full flex justify-center flex-col mt-8 gap-8">
<div class="hero-btn flex justify-center">
<a href="{{ path('reservation_tunnel') }}" class="btnBubbleAnimation block h-11 primary-btn relative border-in-first-btn">
{% trans %}RÉSERVER{% endtrans %}
</a>
</div>
<div class="flex w-full justify-center">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 13.5 12 21m0 0-7.5-7.5M12 21V3" />
</svg>
</div>
</div>
</div>
</section>
{# Section A Propos #}
<section class="flex justify-between flex-wrap-reverse gap-8 text-vitrineWhiteOpacity">
<div class="flexcol gap-6 md:w-2/5">
<div class="flexcol md:items-start items-center w-full font-poppins gap-2 text-white transition duration-300">
<span class="text-2xl font-thin tracking-wider">
(01)
</span>
<h1 class="animate-text text-center w-full md:text-left flexcol gap-0 text-3xl">
{% trans %}Premier Spa à la bière de France{% endtrans %}
</h1>
</div>
<p class="animate-longtext text-justify md:text-left min-w-72 w-full fade-in">
{% trans %}
Bienvenue dans notre univers où détente et convivialité se marient dans nos baignoires houblonnées !
Imaginez-vous plonger dans une baignoire en bois balnéo où se mêlent houblon, malt et levure
de bière, tout en savourant des boissons locales de micro-brasseries.
Notre Spa à la bière offre une expérience unique, alliant relaxation et moments privilégiés
entre amis ou en famille.<br>
<br>
Prêt à découvrir une activité insolite et rare en France ? Vous êtes au bon endroit.
{% endtrans %}
</p>
</div>
<div class="w-full md:w-1/2 flexcol justify-between md:items-start gap-6 mt-16">
<h3 class="h-36 md:text-6xl text-4xl">
<div class="typewrite font-thin" data-period="2000"
data-type='[
"{% trans %}Plongez dans{% endtrans %}<br><span class=\"font-bold\">{% trans %}un bain de douceur{% endtrans %}</span>",
"{% trans %}Une expérience{% endtrans %}<br><span class=\"font-bold\">{% trans %}inoubliable en France{% endtrans %}</span>"
]'
>
<span class="wrap"></span>
</div>
</h3>
<div class="hidden md:block">
{% include "vitrine/components/white-btn.html.twig" with {'path': path('reservation_tunnel'), 'text': 'RÉSERVER'} %}
</div>
</div>
</section>
{# Section Avis #}
<section class="flex justify-between gap-4 text-vitrineWhiteOpacity">
<div class="flexcol w-full gap-6">
<div class="flexcol md:items-start items-center md:w-max w-full font-poppins gap-2 text-white transition duration-300">
<h2 class="animate-text text-center md:text-left flexcol gap-0">
<span class="text-2xl font-thin tracking-wider">
(02)
</span>
{% trans %}Vous en parlez mieux que nous !{% endtrans %}
</h2>
</div>
<div class="animateBubble bg-vitrineOrange w-full flex items-center justify-center md:flex-nowrap flex-wrap gap-10 md:p-12 p-4 md:pb-12 pb-20 relative">
<div class="md:h-max h-52">
<img loading="lazy" class="md:h-max h-52 w-full md:min-w-[190px]" src="{{asset('vitrine/logo/tripadvisor.svg')}}" alt="{% trans %}Tripadvisor logo{% endtrans %}">
</div>
{# Swiper #}
<div class="swiper swiper-advice relative">
<div class="flex h-max swiper-wrapper">
{% for review in reviews %}
<div class="swiper-slide bg-[#ffffff20] h-full min-w-[220px] w-1/2 gap-2 p-2 rounded-xl">
<a target="_blank" href="https://www.tripadvisor.fr/Attraction_Review-g187075-d23907673-Reviews-Taaka_Beer_Spa-Strasbourg_Bas_Rhin_Grand_Est.html" class="flexcol h-full gap-2 justify-between text-white">
<div class="flexcol gap-2 text-white">
<div class="flex items-center gap-4">
<img loading="lazy" class="rounded-full w-8 h-8 object-cover" src="{{ review.image }}" alt="">
<h6 class="font-openSans font-semibold">{{ review.name }}</h6>
<div class="flex items-center gap-1">
<div class="bg-white h-4 w-4 rounded-full"></div>
<div class="bg-white h-4 w-4 rounded-full"></div>
<div class="bg-white h-4 w-4 rounded-full"></div>
<div class="bg-white h-4 w-4 rounded-full"></div>
<div class="bg-white h-4 w-4 rounded-full"></div>
</div>
</div>
<p class="text-white text-base">
{% if review.comment|length > 120 %}
{{ review.comment[:120] ~ '...' }} <span class="font font-bold">{% trans %}Lire la suite{% endtrans %}</span>
{% else %}
{{ review.comment }}
{% endif %}
</p>
</div>
<p class="text-sm">{% trans %}Source{% endtrans %} : tripadvisor</p>
</a>
</div>
{% endfor %}
</div>
</div>
{# Boutons Swiper #}
<div class="white-swiper-btn flex gap-4 flex-row-reverse absolute md:left-[55%] left-1/2 md:-translate-x-0 -translate-x-1/2 bottom-10 w-28">
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
</div>
</div>
</section>
{# Section Image 1er spa #}
<section>
<div class="flexcol ">
<div class="w-full flex justify-center">
<hr class="border border-white horizontal-hr">
</div>
<div class="relative w-full h-max">
<img loading="lazy" class="w-full h-48 object-cover" src="{{asset('vitrine/images/bandeau.jpg')}}" alt="{% trans %}Personnes dans un bain avec des bières{% endtrans %}">
<div class="absolute top-0 w-full h-full flexcol justify-center items-center">
<h2 class="md:text-4xl text-center w-full text-3xl text-wrap">
{% trans %}1er Spa à la bière de France{% endtrans %}
</h2>
<span class="md:text-5xl text-2xl font-extralight">
- {% trans %}Depuis 2022{% endtrans %} -
</span>
</div>
</div>
</div>
</section>
{# Section Offres #}
<section class="flexcol justify-between gap-20 text-vitrineWhiteOpacity">
<div class="flex gap-4 w-full flex-wrap justify-between">
<div class="flexcol flex-1 w-1/2 gap-6">
<div class="flexcol md:items-start items-center md:w-max w-full font-poppins gap-2 text-white transition duration-300">
<h2 class="animate-text text-center md:text-left flexcol gap-0 max-w-md">
<span class="text-2xl font-thin tracking-wider">
(03)
</span>
{% trans %}Découvrez notre parcours en 3 étapes{% endtrans %}
</h2>
</div>
</div>
<div class="flexcol gap-6 hidden md:block w-max">
<p class="mb-8 min-w-[240px] max-w-lg w-full">
{% trans %}
Dans chaque espace, vous serez exclusivement avec la ou les personnes avec lesquelles vous avez effectué la réservation.
Nos baignoires sont positionnées côte à côte dans la même pièce et conçues pour accueillir confortablement 2 personnes.
{% endtrans %}
</p>
</div>
</div>
<div class="flex flex-col md:flex-row items-center justify-between md:gap-4 gap-8">
{# Etape 1 #}
<div class="flexcol items-center text-white hover:text-vitrineOrange transition duration-300">
<div class="h-[446px] rounded-t-full overflow-hidden relative">
<img loading="lazy" class="w-full hover:scale-100 scale-110 transition duration-300 h-full object-cover max-w-xs mb-4 illustration-fade-in image-brightness" src="{{asset('vitrine/images/global/home/alcove-1.jpg')}}" alt="{% trans %}Image d'un sauna avec une femme dedans{% endtrans %}">
<div class="absolute md:opacity-0 md:hover:opacity-100 transition duration-200 w-full h-full top-0 left-0 bg-vitrineOrangeOpacity flexcol gap-4 justify-center text-center p-8 z-20">
<p class="text-white">
{% trans %}
15 minutes de sauna permettent une <strong>détente optimale</strong> et de préparer votre corps à profiter pleinement <strong>des bienfaits</strong> du bain.
{% endtrans %}
</p>
</div>
</div>
<div class="flexcol items-center gap-0">
<h3 class="text-2xl font-normal text-center">
{% trans %}SAUNA{% endtrans %}
</h3>
<span>
{% trans %}étape 1{% endtrans %}
</span>
</div>
</div>
{# Etape 2 #}
<div class="flexcol items-center text-white hover:text-vitrineOrange transition duration-300">
<div class="h-[446px] rounded-t-full overflow-hidden relative">
<img loading="lazy" class="w-full hover:scale-100 scale-110 transition duration-300 h-full object-cover max-w-xs mb-4 illustration-fade-in image-brightness" src="{{asset('vitrine/images/global/home/alcove-2.jpg')}}" alt="{% trans %}Image d'un bain de bière avec une femme dedans et une bière posée sur une planche centrale{% endtrans %}">
<div class="absolute md:opacity-0 md:hover:opacity-100 transition duration-200 w-full h-full top-0 left-0 bg-vitrineOrangeOpacity flexcol gap-4 justify-center text-center p-8 z-20">
<p class="text-white">
{% trans %}
Plongez dans nos baignoires de bois, imprégnées d'ingrédients <strong>entièrement naturels</strong> utilisés pour brasser la bière, tout en savourant des boissons issues de <strong>micro-brasseries locales</strong> !
{% endtrans %}
</p>
</div>
</div>
<div class="flexcol items-center gap-0">
<h3 class="text-2xl font-normal text-center">
{% trans %}BAIN{% endtrans %}
</h3>
<span>
{% trans %}étape 2{% endtrans %}
</span>
</div>
</div>
{# Etape 3 #}
<div class="flexcol items-center text-white hover:text-vitrineOrange transition duration-300">
<div class="h-[446px] rounded-t-full overflow-hidden relative">
<img loading="lazy" class="w-full hover:scale-100 scale-110 transition duration-300 h-full object-cover max-w-xs mb-4 illustration-fade-in image-brightness" src="{{asset('vitrine/images/global/home/alcove-3.jpg')}}" alt="{% trans %}Image d'une femme et d'un homme se reposant avec un masque sur le visage{% endtrans %}">
<div class="absolute md:opacity-0 md:hover:opacity-100 transition duration-200 w-full h-full top-0 left-0 bg-vitrineOrangeOpacity flexcol gap-4 justify-center text-center p-8 z-20">
<p class="text-white">
{% trans %}
Le parcours se conclut par 15 minutes de relaxation, idéales pour <strong>imprégner en douceur les bienfaits</strong> de notre bain houblonné.
{% endtrans %}
</p>
</div>
</div>
<div class="flexcol items-center gap-0">
<h3 class="text-2xl font-normal text-center">
{% trans %}RELAXATION{% endtrans %}
</h3>
<span>
{% trans %}étape 3{% endtrans %}
</span>
</div>
</div>
</div>
</section>
{# Section Offres #}
<section id="offres" class="pt-24">
<div class="flexcol gap-8">
<div class="flexcol flex-1 w-full gap-6">
<div class="flexcol md:items-start items-center md:w-max w-full font-poppins gap-2 text-white transition duration-300">
<h2 class="animate-text text-center md:text-left flexcol gap-0 w-full">
<span class="text-2xl font-thin tracking-wider">
(04)
</span>
{% trans %}Nos offres{% endtrans %}
</h2>
</div>
</div>
<div class="font-poppins flex flex-col md:flex-row gap-20 w-full justify-between mt-8">
{# La bulle #}
<div class="flexcol items-center gap-14 h-full">
<div class="relative">
<img loading="lazy" src="{{asset('vitrine/images/labulle.svg')}}" class="h-60 w-auto illustration-fade-in" alt="{% trans %}illustration fait main d'un homme et d'une femme dans un bain{% endtrans %}">
<div class="h-28 w-auto absolute -bottom-12 left-1/2 -translate-x-1/2">
<h3 class="flexcol gap-0 mt-3">
<span class="font-bold text-5xl font-poppins leading-10">la</span>
<span class="font-bold text-5xl ml-[33px] font-poppins leading-10">bulle</span>
</h3>
</div>
<div class="bubble-wrapper absolute top-0 left-0 w-full h-full">
<img loading="lazy" src="{{asset('vitrine/images/bulles/moyenne-bulle.svg')}}" class="bubble opacity-0 absolute -top-3 right-7" alt="{% trans %}bulle qui flotte{% endtrans %}">
<img loading="lazy" src="{{asset('vitrine/images/bulles/grande-bulle.svg')}}" class="bubble opacity-0 absolute top-8 -right-8" alt="{% trans %}bulle qui flotte{% endtrans %}">
</div>
</div>
<div class="flexcol flex-1 items-center w-full">
<p class="text-center text-base font-medium h-16 flex flex-col justify-center my-4">
{% trans %}À partir de{% endtrans %} <br>
<span class="font-bold text-5xl text-white">60€</span>
{% trans %}En solo{% endtrans %} <br>
</p>
<hr class="border border-white w-full max-w-sm">
<div class="flexcol gap-4 text-vitrineWhiteOpacity max-w-sm w-full">
<div class="flex gap-4 justify-between w-full">
<p>
{% trans %}Sauna{% endtrans %}
</p>
<p class="text-white font-semibold">
15min
</p>
</div>
<div class="flex gap-4 justify-between w-full">
<p>
{% trans %}Bain{% endtrans %}
</p>
<p class="text-white font-semibold">
30min
</p>
</div>
<div class="flex gap-4 justify-between w-full">
<p>
{% trans %}Relaxation{% endtrans %}
</p>
<p class="text-white font-semibold">
15min
</p>
</div>
<a href="{{ path('reservation_tunnel') }}" class="btnBubbleAnimation text-center w-full primary-btn relative fade-in h-max">
{% trans %}CHOISIR{% endtrans %}
</a>
</div>
</div>
</div>
{# Grande bulle #}
<div class="flexcol items-center gap-14 h-full">
<div class="relative">
<img loading="lazy" src="{{asset('vitrine/images/grandebulle.svg')}}" class="h-60 w-auto illustration-fade-in" alt="{% trans %}illustration fait main d'un homme et d'une femme dans un bain{% endtrans %}">
<div class="h-28 w-auto absolute -bottom-12 left-1/2 -translate-x-1/2 z-30">
<h3 class="flexcol gap-0 mt-3">
<span class="font-bold text-5xl font-poppins mr-14 leading-10">grande</span>
<span class="font-bold text-5xl ml-[136px] font-poppins leading-10">bulle</span>
</h3>
</div>
<div class="bubble-wrapper absolute top-0 left-0 w-full h-full">
<img loading="lazy" src="{{asset('vitrine/images/bulles/moyenne-bulle.svg')}}" class="bubble opacity-0 absolute -top-6 left-16" alt="{% trans %}bulle qui flotte{% endtrans %}">
<img loading="lazy" src="{{asset('vitrine/images/bulles/grande-bulle.svg')}}" class="bubble opacity-0 absolute -bottom-3 right-3" alt="{% trans %}bulle qui flotte{% endtrans %}">
</div>
</div>
<div class="flexcol flex-1 items-center w-full">
<p class="text-center text-base font-medium h-16 flex flex-col justify-center my-4">
{% trans %}À partir de{% endtrans %} <br>
<span class="font-bold text-5xl text-white">90€</span>
{% trans %}En solo{% endtrans %}
</p>
<hr class="border border-white w-full max-w-sm">
<div class="flexcol gap-4 text-vitrineWhiteOpacity max-w-sm w-full">
<div class="flex gap-4 justify-between w-full">
<p>
{% trans %}Sauna{% endtrans %}
</p>
<p class="text-white font-semibold">
15min
</p>
</div>
<div class="flex gap-4 justify-between w-full">
<p>
{% trans %}Bain{% endtrans %}
</p>
<p class="text-white font-semibold">
60min
</p>
</div>
<div class="flex gap-4 justify-between w-full">
<p>
{% trans %}Relaxation{% endtrans %}
</p>
<p class="text-white font-semibold">
15min
</p>
</div>
<a href="{{ path('reservation_tunnel') }}" class="btnBubbleAnimation text-center w-full primary-btn relative fade-in h-max">
{% trans %}CHOISIR{% endtrans %}
</a>
</div>
</div>
</div>
{# L'effervescence #}
<div class="flexcol items-center gap-14">
<div class="relative">
<img loading="lazy" src="{{asset('vitrine/images/effervescence.svg')}}" class="h-60 w-auto illustration-fade-in" alt="{% trans %}illustration fait main d'un groupe d'amis dans une salle avec plusieurs bains{% endtrans %}">
<div class="h-28 w-auto absolute -bottom-12 left-1/2 -translate-x-1/2 z-30">
<h3 class="flexcol gap-0 mt-3">
<span class="font-bold text-5xl font-poppins mr-14 leading-10">l'éfferve-</span>
<span class="font-bold text-5xl ml-[100px] font-poppins leading-10">scence</span>
</h3>
</div>
<div class="bubble-wrapper absolute top-0 left-0 w-full h-full">
<img loading="lazy" src="{{asset('vitrine/images/bulles/moyenne-bulle.svg')}}" class="bubble opacity-0 absolute top-11 -left-1" alt="{% trans %}bulle qui flotte{% endtrans %}">
<img loading="lazy" src="{{asset('vitrine/images/bulles/grande-bulle.svg')}}" class="bubble opacity-0 absolute -top-8 left-12" alt="{% trans %}bulle qui flotte{% endtrans %}">
</div>
</div>
<div class="flexcol justify-end flex-1 items-center w-full h-full">
<p class="text-center text-base font-medium flex flex-col pb-2">
{% trans %}Demande{% endtrans %} <br>
<span class="font-bold text-5xl text-white">{% trans %}sur devis{% endtrans %}</span>
</p>
<hr class="border border-white w-full max-w-sm">
<div class="flexcol justify-between gap-4 text-vitrineWhiteOpacity max-w-sm w-full h-[164px]">
<div class="flexcol gap-4 text-vitrineWhiteOpacity max-w-sm w-full">
<div class="flex gap-4 justify-between w-full">
<p>
{% trans %}Privatisation totale{% endtrans %}
</p>
<p class="text-white font-semibold">
2h {% trans %}ou{% endtrans %} 3h
</p>
</div>
<div class="flex gap-4 justify-between w-full">
<p>
{% trans %}Nombre de personnes{% endtrans %}
</p>
<p class="text-white font-semibold">
4 {% trans %}à{% endtrans %} 16
</p>
</div>
</div>
<a href="{{ path('privatisation_tunnel') }}" class="btnBubbleAnimation text-center w-full primary-btn relative fade-in h-max">
{% trans %}DEMANDER UN DEVIS{% endtrans %}
</a>
</div>
</div>
</div>
</div>
</div>
</section>
{# Section Bienfaits #}
<section class="flexcol gap-20">
<div class="flex md:flex-row flex-col md:items-end gap-6 w-full h-max">
<div class="flexcol flex-1 md:items-start items-center md:w-max w-full font-poppins gap-2 text-white transition duration-300">
<h2 class="animate-text text-center md:text-left flexcol gap-0">
<span class="text-2xl font-thin tracking-wider">
(05)
</span>
{% trans %}Bienfaits{% endtrans %}
</h2>
<p class="mt-4 w-full md:max-w-sm md:text-left text-center">
{% trans %}
Le bouillonnement continu du bain favorise la dissolution des ingrédients, libérant ainsi des <b>vitamines</b>, <b>glucides</b> et <b>protéines</b>.
{% endtrans %}
</p>
</div>
<div class="h-full flex-1 flex justify-center items-end">
{% include "vitrine/components/white-btn.html.twig" with {'path': path('faq'), 'text': 'Foire Aux Questions'} %}
</div>
</div>
<div class="md:accordion flex flex-col md:flex-row gap-4 w-full">
<div class="aspect-square h-96 overflow-hidden transition duration-1000 relative">
<img loading="lazy" class="w-full h-full object-cover image-brightness" src="{{asset('vitrine/images/global/home/houblon.jpg')}}" alt="{% trans %}Image de houblon{% endtrans %}">
<div class="absolute md:opacity-0 md:hover:opacity-100 transition duration-200 w-full h-full top-0 left-0 bg-vitrineOrangeOpacity flexcol gap-4 justify-center items-center text-center p-4 z-20">
<h3 class="text-2xl font-semibold text-white text-center w-full">
{% trans %}Houblon{% endtrans %}
</h3>
<p class="text-white max-w-xs">
{% trans %}
Le houblon a des propriétés antiseptiques et bactéricides naturelles qui contribuent à nettoyer, adoucir et assouplir la peau. De plus, étant issu de la famille des Cannabinacées, il offre une sensation de bien-être qui se diffuse dans tout votre corps.
{% endtrans %}
</p>
</div>
</div>
<div class="aspect-square h-96 overflow-hidden relative">
<img loading="lazy" class="w-full h-full object-cover image-brightness" src="{{asset('vitrine/images/global/home/malt.jpg')}}" alt="{% trans %}Image de grains{% endtrans %}">
<div class="absolute md:opacity-0 md:hover:opacity-100 transition duration-200 w-full h-full top-0 left-0 bg-vitrineOrangeOpacity flexcol gap-4 justify-center items-center text-center p-4 z-20">
<h3 class="text-2xl font-semibold text-white text-center w-full">
{% trans %}Malt{% endtrans %}
</h3>
<p class="text-white max-w-xs">
{% trans %}
Le malt est riche en antioxydants, contribuant à améliorer la texture de la peau, la rendant à la fois plus tonique et plus nette.
{% endtrans %}
</p>
</div>
</div>
<div class="aspect-square h-96 overflow-hidden relative">
<img loading="lazy" class="w-full h-full object-cover image-brightness" src="{{asset('vitrine/images/global/home/levure.jpg')}}" alt="{% trans %}Image de levure{% endtrans %}">
<div class="absolute md:opacity-0 md:hover:opacity-100 transition duration-200 w-full h-full top-0 left-0 bg-vitrineOrangeOpacity flexcol gap-4 justify-center items-center text-center p-4 z-20">
<h3 class="text-2xl font-semibold text-white text-center w-full">
{% trans %}Levure{% endtrans %}
</h3>
<p class="text-white max-w-xs">
{% trans %}
La levure de bière regorge de vitamines, constituant un véritable concentré de beauté pour vos cheveux, ongles et peau.
{% endtrans %}
</p>
</div>
</div>
</div>
</section>
{# Informations #}
<section id="informations" class="flexcol gap-10">
<h2 class="animate-text text-center md:text-left flexcol gap-0">
<span class="text-2xl font-thin tracking-wider">
(06)
</span>
{% trans %}Où nous trouver ?{% endtrans %}
</h2>
<div class="flex flex-col md:flex-row gap-4">
<div class="flex-1 border-in p-10">
<h4 class="text-base mb-4">
{% trans %}Localisation{% endtrans %}
</h4>
<div class="flexcol">
<div class="flexcol gap-1">
<h5 class="text-2xl text-vitrineOrange">
{% trans %}Adresse{% endtrans %}
</h5>
<a href="https://www.google.com/maps/place/Taaka+Beer+Spa/@48.5851755,7.7449667,17z/data=!3m1!4b1!4m6!3m5!1s0x4796c96b36e3dfe9:0xbac2808dce45d639!8m2!3d48.5851755!4d7.7449667!16s%2Fg%2F11pcvh7hxz?entry=ttu&g_ep=EgoyMDI0MDkxMS4wIKXMDSoASAFQAw%3D%3D" target="_blank" class="z-20 clickable">
6 rue Marbach, <br>
67000 Strasbourg
</a>
</div>
<div class="flexcol gap-1">
<h5 class="text-2xl text-vitrineOrange">
{% trans %}Téléphone{% endtrans %}
</h5>
<a href="tel:+33388965434" class="z-20 clickable">
+33 3 88 96 54 34
</a>
</div>
<div class="flexcol gap-1">
<h5 class="text-2xl text-vitrineOrange">
{% trans %}Email{% endtrans %}
</h5>
<a href="mailto:contact@taakabeerspa.com" class="z-20 clickable">
contact@taakabeerspa.com
</a>
</div>
</div>
</div>
<div class="flex-1 border-in p-10 animateBubble">
<h4 class="text-base mb-4">
{% trans %}Venez nous voir{% endtrans %}
</h4>
<div class="flexcol">
<h5 class="text-2xl text-vitrineOrange">
{% trans %}Horaires{% endtrans %}
</h5>
<div class="w-full flexcol gap-8">
<div class="flex items-center gap-2 w-full font-semibold">
<p class="whitespace-nowrap text-white">
{% trans %}Lundi{% endtrans %}
</p>
<hr class="border border-t-0 border-vitrineWhiteOpacity w-full">
<p class="whitespace-nowrap text-white">
11h - 21h30
</p>
</div>
<div class="flex items-center gap-2 w-full font-semibold">
<p class="whitespace-nowrap text-white">
{% trans %}Mardi{% endtrans %}
</p>
<hr class="border border-t-0 border-vitrineWhiteOpacity w-full">
<p class="whitespace-nowrap text-vitrineOrange">
{% trans %}Fermé{% endtrans %}
</p>
</div>
<div class="flex items-center gap-2 w-full font-semibold">
<p class="whitespace-nowrap text-white">
{% trans %}Mercredi, Jeudi{% endtrans %}
</p>
<hr class="border border-t-0 border-vitrineWhiteOpacity w-full">
<p class="whitespace-nowrap text-white">
11h - 21h30
</p>
</div>
<div class="flex items-center gap-2 w-full font-semibold">
<p class="sm:whitespace-nowrap text-white flex-1">
{% trans %}Vendredi, Samedi, Dimanche{% endtrans %}
</p>
<hr class="border border-t-0 border-vitrineWhiteOpacity w-full">
<p class="whitespace-nowrap text-white">
11h - 21h30
</p>
</div>
</div>
</div>
</div>
</div>
</section>
{% include "vitrine/layout/footer.html.twig" %}
</div>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script type="module">
import { initTypewriter } from '../../../js/vitrine/main.js';
document.addEventListener('DOMContentLoaded', function () {
//*** Typewriter ***//
initTypewriter();
//*** Swiper ***//
const swiper = new Swiper('.swiper', {
spaceBetween: 10,
loop: true,
speed: 1000,
autoplay: {
delay: 5000,
pauseOnMouseEnter: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
breakpoints: {
768: {
slidesPerView: 1,
},
1024: {
slidesPerView: 2,
},
},
});
});
</script>
{% endblock %}