/* Header mobile scrollable */ @media (max-width: 768px) { .header { overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; padding: 15px 10px !important; scrollbar-width: none; /* Firefox */ } .header::-webkit-scrollbar { display: none; /* Chrome/Safari */ } .header a { display: inline-block !important; margin: 0 8px; padding: 8px 15px; font-size: 14px; } .logo { display: inline-block !important; margin-right: 15px; } }
🎉 Apple Pay et Google Pay bientôt disponibles ! 💳 En attendant, profitez de PayPal
Profil 🛒 0
🤖
🤖 Harrama - Assistant ARLinK
👋 Bonjour ! Je suis Harrama, votre assistant. Comment puis-je vous aider ?
fetch('/api/artisans_map.php') .then(response => response.json()) .then(artisans => { artisans.forEach(artisan => { const marker = L.marker([parseFloat(artisan.lat), parseFloat(artisan.lng)], { icon: goldIcon }).addTo(map); marker.bindPopup(` `); }); });