|
<!DOCTYPE html> |
|
<html lang="fr"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Taxi DJI - Service de taxi premium à Paris</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<style> |
|
@keyframes float { |
|
0% { transform: translateY(0px); } |
|
50% { transform: translateY(-10px); } |
|
100% { transform: translateY(0px); } |
|
} |
|
.floating { |
|
animation: float 6s ease-in-out infinite; |
|
} |
|
.floating-fast { |
|
animation: float 3s ease-in-out infinite; |
|
} |
|
.floating-slow { |
|
animation: float 8s ease-in-out infinite; |
|
} |
|
.whatsapp-btn { |
|
position: fixed; |
|
bottom: 30px; |
|
right: 30px; |
|
z-index: 100; |
|
transition: all 0.3s ease; |
|
} |
|
.whatsapp-btn:hover { |
|
transform: scale(1.1); |
|
} |
|
.pulse { |
|
animation: pulse 2s infinite; |
|
} |
|
@keyframes pulse { |
|
0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } |
|
70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); } |
|
100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } |
|
} |
|
.bg-pattern { |
|
background-color: #f8f9fa; |
|
background-image: radial-gradient(#000000 1px, transparent 1px); |
|
background-size: 20px 20px; |
|
} |
|
.hover-grow { |
|
transition: all 0.3s ease; |
|
} |
|
.hover-grow:hover { |
|
transform: translateY(-5px); |
|
} |
|
</style> |
|
</head> |
|
<body class="bg-pattern font-sans"> |
|
|
|
<div class="whatsapp-btn"> |
|
<a href="https://wa.me/33749907487" class="bg-[#25D366] text-white w-16 h-16 rounded-full flex items-center justify-center text-3xl shadow-xl pulse"> |
|
<i class="fab fa-whatsapp"></i> |
|
</a> |
|
</div> |
|
|
|
|
|
<header class="bg-black text-white py-6 sticky top-0 z-50 shadow-md"> |
|
<div class="container mx-auto px-4 flex justify-between items-center"> |
|
<div class="flex items-center"> |
|
<div class="bg-yellow-400 w-10 h-10 rounded-full flex items-center justify-center text-black font-bold text-xl mr-3 floating-slow"> |
|
DJI |
|
</div> |
|
<h1 class="text-2xl font-bold">TAXI <span class="text-yellow-400">DJI</span></h1> |
|
</div> |
|
<nav class="hidden md:flex space-x-8"> |
|
<a href="#tarifs" class="hover:text-yellow-400 transition">Tarifs</a> |
|
<a href="#vehicules" class="hover:text-yellow-400 transition">Véhicules</a> |
|
<a href="#services" class="hover:text-yellow-400 transition">Services</a> |
|
<a href="#blog" class="hover:text-yellow-400 transition">Blog</a> |
|
<a href="#contact" class="hover:text-yellow-400 transition">Contact</a> |
|
</nav> |
|
<div class="md:hidden"> |
|
<button class="text-white focus:outline-none"> |
|
<i class="fas fa-bars text-2xl"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</header> |
|
|
|
|
|
<section class="py-20 relative overflow-hidden"> |
|
<div class="absolute top-0 left-0 w-full h-full"> |
|
<div class="absolute top-20 left-10 w-4 h-4 bg-yellow-400 rounded-full floating"></div> |
|
<div class="absolute top-1/3 right-20 w-6 h-6 bg-black rounded-full floating-fast"></div> |
|
<div class="absolute bottom-20 left-1/4 w-8 h-8 bg-white rounded-full floating-slow"></div> |
|
<div class="absolute bottom-1/3 right-1/3 w-5 h-5 bg-yellow-400 rounded-full floating"></div> |
|
</div> |
|
<div class="container mx-auto px-4 relative z-10 text-center"> |
|
<h2 class="text-4xl md:text-6xl font-bold mb-6">Service de Taxi <span class="text-yellow-400">Premium</span> à Paris</h2> |
|
<p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">Ponctualité, confort et sécurité pour tous vos déplacements en Île-de-France et au-delà.</p> |
|
<div class="flex flex-col sm:flex-row justify-center gap-4"> |
|
<a href="tel:0749907487" class="bg-black hover:bg-gray-800 text-white py-4 px-8 rounded-full font-bold text-lg transition flex items-center justify-center gap-2 hover-grow"> |
|
<i class="fas fa-phone"></i> 07 49 90 74 87 |
|
</a> |
|
<a href="https://wa.me/33749907487" class="bg-yellow-400 hover:bg-yellow-500 text-black py-4 px-8 rounded-full font-bold text-lg transition flex items-center justify-center gap-2 hover-grow"> |
|
<i class="fab fa-whatsapp"></i> Réserver via WhatsApp |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="tarifs" class="py-16 bg-white"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold mb-4">Nos <span class="text-yellow-400">Tarifs</span> Forfaitaires</h2> |
|
<p class="text-gray-600 max-w-2xl mx-auto">Des tarifs transparents et compétitifs pour vos trajets vers les aéroports.</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-2 gap-8 max-w-4xl mx-auto"> |
|
<div class="bg-gray-50 p-8 rounded-xl shadow-md hover-grow"> |
|
<div class="flex justify-between items-center mb-6"> |
|
<h3 class="text-2xl font-bold">Orly → Paris</h3> |
|
<div class="bg-yellow-400 text-black py-1 px-4 rounded-full text-lg font-bold">À partir de</div> |
|
</div> |
|
<div class="space-y-4"> |
|
<div class="flex justify-between py-3 border-b border-gray-200"> |
|
<span>Rive gauche</span> |
|
<span class="font-bold">43€</span> |
|
</div> |
|
<div class="flex justify-between py-3 border-b border-gray-200"> |
|
<span>Rive droite</span> |
|
<span class="font-bold">52€</span> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-8 rounded-xl shadow-md hover-grow"> |
|
<div class="flex justify-between items-center mb-6"> |
|
<h3 class="text-2xl font-bold">CDG → Paris</h3> |
|
<div class="bg-yellow-400 text-black py-1 px-4 rounded-full text-lg font-bold">À partir de</div> |
|
</div> |
|
<div class="space-y-4"> |
|
<div class="flex justify-between py-3 border-b border-gray-200"> |
|
<span>Rive gauche</span> |
|
<span class="font-bold">72€</span> |
|
</div> |
|
<div class="flex justify-between py-3 border-b border-gray-200"> |
|
<span>Rive droite</span> |
|
<span class="font-bold">63€</span> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="text-center mt-12"> |
|
<p class="text-gray-600">Tarifs indicatifs pouvant varier selon la circulation et le point de prise en charge exact.</p> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="vehicules" class="py-16 bg-gray-100"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold mb-4">Nos <span class="text-yellow-400">Véhicules</span></h2> |
|
<p class="text-gray-600 max-w-2xl mx-auto">Une flotte moderne et variée adaptée à tous vos besoins.</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6"> |
|
<div class="bg-white p-6 rounded-xl shadow-md text-center hover-grow"> |
|
<div class="bg-black text-yellow-400 w-16 h-16 rounded-full flex items-center justify-center text-3xl mx-auto mb-4"> |
|
<i class="fas fa-shuttle-van"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2">VAN</h3> |
|
<p class="text-gray-600">Capacité jusqu'à 8 passagers, idéal pour les groupes.</p> |
|
</div> |
|
|
|
<div class="bg-white p-6 rounded-xl shadow-md text-center hover-grow"> |
|
<div class="bg-black text-yellow-400 w-16 h-16 rounded-full flex items-center justify-center text-3xl mx-auto mb-4"> |
|
<i class="fas fa-car-alt"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2">SUV</h3> |
|
<p class="text-gray-600">Confort et espace pour 4 passagers avec bagages.</p> |
|
</div> |
|
|
|
<div class="bg-white p-6 rounded-xl shadow-md text-center hover-grow"> |
|
<div class="bg-black text-yellow-400 w-16 h-16 rounded-full flex items-center justify-center text-3xl mx-auto mb-4"> |
|
<i class="fas fa-car"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2">Berline</h3> |
|
<p class="text-gray-600">Élégance et confort pour 3 passagers.</p> |
|
</div> |
|
|
|
<div class="bg-white p-6 rounded-xl shadow-md text-center hover-grow"> |
|
<div class="bg-black text-yellow-400 w-16 h-16 rounded-full flex items-center justify-center text-3xl mx-auto mb-4"> |
|
<i class="fas fa-car-side"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2">Break</h3> |
|
<p class="text-gray-600">Espace cargo important pour 4 passagers.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="services" class="py-16 bg-white"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold mb-4">Nos <span class="text-yellow-400">Services</span> Spéciaux</h2> |
|
<p class="text-gray-600 max-w-2xl mx-auto">Des solutions adaptées à vos besoins spécifiques.</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-3 gap-8"> |
|
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover-grow"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-black text-yellow-400 w-12 h-12 rounded-full flex items-center justify-center text-xl mr-4"> |
|
<i class="fas fa-hand-holding-usd"></i> |
|
</div> |
|
<h3 class="text-xl font-bold">Assistance Avance de Frais</h3> |
|
</div> |
|
<p class="text-gray-600">Nous prenons en charge vos frais de transport avec remboursement ultérieur.</p> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover-grow"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-black text-yellow-400 w-12 h-12 rounded-full flex items-center justify-center text-xl mr-4"> |
|
<i class="fas fa-file-medical"></i> |
|
</div> |
|
<h3 class="text-xl font-bold">Convention CPAM</h3> |
|
</div> |
|
<p class="text-gray-600">Agréé CPAM pour les départements 94, 77, 89, 45, 51 et 02.</p> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover-grow"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-black text-yellow-400 w-12 h-12 rounded-full flex items-center justify-center text-xl mr-4"> |
|
<i class="fas fa-flask"></i> |
|
</div> |
|
<h3 class="text-xl font-bold">Course Laboratoire</h3> |
|
</div> |
|
<p class="text-gray-600">Transport de prélèvements médicaux avec avance de frais (sur protocole).</p> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover-grow"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-black text-yellow-400 w-12 h-12 rounded-full flex items-center justify-center text-xl mr-4"> |
|
<i class="fas fa-calendar-day"></i> |
|
</div> |
|
<h3 class="text-xl font-bold">Location à la Journée</h3> |
|
</div> |
|
<p class="text-gray-600">Véhicule avec chauffeur à disposition pour la journée sur réservation.</p> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover-grow"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-black text-yellow-400 w-12 h-12 rounded-full flex items-center justify-center text-xl mr-4"> |
|
<i class="fas fa-umbrella-beach"></i> |
|
</div> |
|
<h3 class="text-xl font-bold">Trajets Touristiques</h3> |
|
</div> |
|
<p class="text-gray-600">Aéroports, gares, Disneyland Paris et toutes zones touristiques.</p> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover-grow"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-black text-yellow-400 w-12 h-12 rounded-full flex items-center justify-center text-xl mr-4"> |
|
<i class="fas fa-clock"></i> |
|
</div> |
|
<h3 class="text-xl font-bold">Disponibilité 24/7</h3> |
|
</div> |
|
<p class="text-gray-600">Service disponible 24h/24 et 7j/7 pour répondre à tous vos besoins.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-16 bg-black text-white"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold mb-4">Nos <span class="text-yellow-400">Valeurs</span></h2> |
|
<p class="text-gray-300 max-w-2xl mx-auto">Ce qui fait la différence Taxi DJI.</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6"> |
|
<div class="bg-gray-900 p-6 rounded-xl hover-grow"> |
|
<div class="bg-yellow-400 text-black w-12 h-12 rounded-full flex items-center justify-center text-xl mb-4 mx-auto"> |
|
<i class="fas fa-clock"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2 text-center">Ponctualité</h3> |
|
<p class="text-gray-300 text-center">Respect strict des horaires convenus.</p> |
|
</div> |
|
|
|
<div class="bg-gray-900 p-6 rounded-xl hover-grow"> |
|
<div class="bg-yellow-400 text-black w-12 h-12 rounded-full flex items-center justify-center text-xl mb-4 mx-auto"> |
|
<i class="fas fa-eye"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2 text-center">Transparence</h3> |
|
<p class="text-gray-300 text-center">Tarifs clairs sans surprise.</p> |
|
</div> |
|
|
|
<div class="bg-gray-900 p-6 rounded-xl hover-grow"> |
|
<div class="bg-yellow-400 text-black w-12 h-12 rounded-full flex items-center justify-center text-xl mb-4 mx-auto"> |
|
<i class="fas fa-shield-alt"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2 text-center">Sécurité</h3> |
|
<p class="text-gray-300 text-center">Chauffeurs professionnels et véhicules entretenus.</p> |
|
</div> |
|
|
|
<div class="bg-gray-900 p-6 rounded-xl hover-grow"> |
|
<div class="bg-yellow-400 text-black w-12 h-12 rounded-full flex items-center justify-center text-xl mb-4 mx-auto"> |
|
<i class="fas fa-handshake"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2 text-center">Confiance</h3> |
|
<p class="text-gray-300 text-center">Relation de confiance avec nos clients.</p> |
|
</div> |
|
|
|
<div class="bg-gray-900 p-6 rounded-xl hover-grow"> |
|
<div class="bg-yellow-400 text-black w-12 h-12 rounded-full flex items-center justify-center text-xl mb-4 mx-auto"> |
|
<i class="fas fa-couch"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2 text-center">Confort</h3> |
|
<p class="text-gray-300 text-center">Véhicules spacieux et climatisés.</p> |
|
</div> |
|
|
|
<div class="bg-gray-900 p-6 rounded-xl hover-grow"> |
|
<div class="bg-yellow-400 text-black w-12 h-12 rounded-full flex items-center justify-center text-xl mb-4 mx-auto"> |
|
<i class="fas fa-wheelchair"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2 text-center">Adaptabilité</h3> |
|
<p class="text-gray-300 text-center">Personnes âgées, PAM, animaux domestiques.</p> |
|
</div> |
|
|
|
<div class="bg-gray-900 p-6 rounded-xl hover-grow"> |
|
<div class="bg-yellow-400 text-black w-12 h-12 rounded-full flex items-center justify-center text-xl mb-4 mx-auto"> |
|
<i class="fas fa-headset"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2 text-center">Disponibilité</h3> |
|
<p class="text-gray-300 text-center">24h/24, 7j/7 pour répondre à vos besoins.</p> |
|
</div> |
|
|
|
<div class="bg-gray-900 p-6 rounded-xl hover-grow"> |
|
<div class="bg-yellow-400 text-black w-12 h-12 rounded-full flex items-center justify-center text-xl mb-4 mx-auto"> |
|
<i class="fas fa-smile"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2 text-center">Satisfaction</h3> |
|
<p class="text-gray-300 text-center">Clientèle fidèle et satisfaite depuis des années.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="blog" class="py-16 bg-gray-100"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold mb-4">Notre <span class="text-yellow-400">Blog</span></h2> |
|
<p class="text-gray-600 max-w-2xl mx-auto">Actualités et conseils pour vos déplacements.</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-3 gap-8"> |
|
<div class="bg-white rounded-xl overflow-hidden shadow-md hover-grow"> |
|
<div class="bg-black text-white p-4"> |
|
<h3 class="text-xl font-bold">Conseils pour un trajet réussi</h3> |
|
</div> |
|
<div class="p-6"> |
|
<p class="text-gray-600 mb-4">Découvrez nos astuces pour préparer au mieux votre trajet vers l'aéroport.</p> |
|
<a href="#" class="text-yellow-500 font-bold hover:text-yellow-600 transition">Lire l'article →</a> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-white rounded-xl overflow-hidden shadow-md hover-grow"> |
|
<div class="bg-black text-white p-4"> |
|
<h3 class="text-xl font-bold">Nouveaux véhicules</h3> |
|
</div> |
|
<div class="p-6"> |
|
<p class="text-gray-600 mb-4">Notre flotte s'agrandit avec de nouveaux modèles premium.</p> |
|
<a href="#" class="text-yellow-500 font-bold hover:text-yellow-600 transition">Lire l'article →</a> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-white rounded-xl overflow-hidden shadow-md hover-grow"> |
|
<div class="bg-black text-white p-4"> |
|
<h3 class="text-xl font-bold">Transport médical</h3> |
|
</div> |
|
<div class="p-6"> |
|
<p class="text-gray-600 mb-4">Tout savoir sur nos services conventionnés CPAM.</p> |
|
<a href="#" class="text-yellow-500 font-bold hover:text-yellow-600 transition">Lire l'article →</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="text-center mt-12"> |
|
<a href="#" class="bg-black hover:bg-gray-800 text-white py-3 px-6 rounded-full font-bold transition inline-flex items-center gap-2"> |
|
<i class="fas fa-book-open"></i> Voir tous les articles |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="contact" class="py-16 bg-white"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold mb-4">Nous <span class="text-yellow-400">Contacter</span></h2> |
|
<p class="text-gray-600 max-w-2xl mx-auto">Disponibles 24h/24 pour répondre à vos demandes.</p> |
|
</div> |
|
|
|
<div class="grid md:grid-cols-2 gap-12 max-w-4xl mx-auto"> |
|
<div> |
|
<h3 class="text-xl font-bold mb-6">Coordonnées</h3> |
|
<div class="space-y-4"> |
|
<div class="flex items-start"> |
|
<div class="bg-black text-yellow-400 w-10 h-10 rounded-full flex items-center justify-center text-lg mr-4 mt-1"> |
|
<i class="fas fa-phone"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-bold">Téléphone</h4> |
|
<a href="tel:0749907487" class="text-gray-600 hover:text-black transition">07 49 90 74 87</a> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="bg-black text-yellow-400 w-10 h-10 rounded-full flex items-center justify-center text-lg mr-4 mt-1"> |
|
<i class="fab fa-whatsapp"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-bold">WhatsApp</h4> |
|
<a href="https://wa.me/33749907487" class="text-gray-600 hover:text-black transition">Envoyer un message</a> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="bg-black text-yellow-400 w-10 h-10 rounded-full flex items-center justify-center text-lg mr-4 mt-1"> |
|
<i class="fas fa-envelope"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-bold">Email</h4> |
|
<a href="mailto:[email protected]" class="text-gray-600 hover:text-black transition">[email protected]</a> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="bg-black text-yellow-400 w-10 h-10 rounded-full flex items-center justify-center text-lg mr-4 mt-1"> |
|
<i class="fas fa-clock"></i> |
|
</div> |
|
<div> |
|
<h4 class="font-bold">Horaires</h4> |
|
<p class="text-gray-600">24 heures sur 24, 7 jours sur 7</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div> |
|
<h3 class="text-xl font-bold mb-6">Formulaire de contact</h3> |
|
<form class="space-y-4"> |
|
<div> |
|
<label for="name" class="block font-medium mb-1">Nom</label> |
|
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-400"> |
|
</div> |
|
|
|
<div> |
|
<label for="email" class="block font-medium mb-1">Email</label> |
|
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-400"> |
|
</div> |
|
|
|
<div> |
|
<label for="message" class="block font-medium mb-1">Message</label> |
|
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-400"></textarea> |
|
</div> |
|
|
|
<button type="submit" class="bg-black hover:bg-gray-800 text-white py-3 px-6 rounded-full font-bold transition w-full"> |
|
Envoyer le message |
|
</button> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-16 bg-yellow-400"> |
|
<div class="container mx-auto px-4 text-center"> |
|
<h2 class="text-3xl font-bold mb-6">Prêt à réserver votre trajet ?</h2> |
|
<p class="text-xl mb-8 max-w-2xl mx-auto">Contactez-nous dès maintenant pour un service rapide et professionnel.</p> |
|
<div class="flex flex-col sm:flex-row justify-center gap-4"> |
|
<a href="tel:0749907487" class="bg-black hover:bg-gray-800 text-white py-4 px-8 rounded-full font-bold text-lg transition flex items-center justify-center gap-2 hover-grow"> |
|
<i class="fas fa-phone"></i> Appeler maintenant |
|
</a> |
|
<a href="https://wa.me/33749907487" class="bg-white hover:bg-gray-100 text-black py-4 px-8 rounded-full font-bold text-lg transition flex items-center justify-center gap-2 hover-grow"> |
|
<i class="fab fa-whatsapp"></i> WhatsApp |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<footer class="bg-black text-white py-12"> |
|
<div class="container mx-auto px-4"> |
|
<div class="grid md:grid-cols-4 gap-8"> |
|
<div> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-yellow-400 text-black w-10 h-10 rounded-full flex items-center justify-center font-bold text-xl mr-3"> |
|
DJI |
|
</div> |
|
<h3 class="text-xl font-bold">TAXI DJI</h3> |
|
</div> |
|
<p class="text-gray-400">Service de taxi premium à Paris et en Île-de-France.</p> |
|
</div> |
|
|
|
<div> |
|
<h4 class="text-lg font-bold mb-4">Liens utiles</h4> |
|
<ul class="space-y-2"> |
|
<li><a href="#tarifs" class="text-gray-400 hover:text-yellow-400 transition">Tarifs</a></li> |
|
<li><a href="#vehicules" class="text-gray-400 hover:text-yellow-400 transition">Véhicules</a></li> |
|
<li><a href="#services" class="text-gray-400 hover:text-yellow-400 transition">Services</a></li> |
|
<li><a href="#blog" class="text-gray-400 hover:text-yellow-400 transition">Blog</a></li> |
|
</ul> |
|
</div> |
|
|
|
<div> |
|
<h4 class="text-lg font-bold mb-4">Mentions légales</h4> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">CGU</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Politique de confidentialité</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Mentions légales</a></li> |
|
</ul> |
|
</div> |
|
|
|
<div> |
|
<h4 class="text-lg font-bold mb-4">Réseaux sociaux</h4> |
|
<div class="flex space-x-4"> |
|
<a href="#" class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center text-lg transition"> |
|
<i class="fab fa-facebook-f"></i> |
|
</a> |
|
<a href="#" class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center text-lg transition"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
<a href="#" class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center text-lg transition"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400"> |
|
<p>© 2023 Taxi DJI. Tous droits réservés.</p> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
const mobileMenuButton = document.querySelector('.md\\:hidden button'); |
|
const menuItems = document.querySelector('.md\\:flex'); |
|
|
|
mobileMenuButton.addEventListener('click', function() { |
|
menuItems.classList.toggle('hidden'); |
|
menuItems.classList.toggle('flex'); |
|
menuItems.classList.toggle('flex-col'); |
|
menuItems.classList.toggle('absolute'); |
|
menuItems.classList.toggle('top-16'); |
|
menuItems.classList.toggle('left-0'); |
|
menuItems.classList.toggle('w-full'); |
|
menuItems.classList.toggle('bg-black'); |
|
menuItems.classList.toggle('p-4'); |
|
menuItems.classList.toggle('space-y-4'); |
|
menuItems.classList.toggle('space-x-8'); |
|
}); |
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function (e) { |
|
e.preventDefault(); |
|
|
|
document.querySelector(this.getAttribute('href')).scrollIntoView({ |
|
behavior: 'smooth' |
|
}); |
|
}); |
|
}); |
|
}); |
|
</script> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Adamchab/taxidji" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |