| <!DOCTYPE html> |
| <html lang="fr"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>AutoLuxe - Vente de voitures d'exception</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> |
| .hero { |
| background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80'); |
| background-size: cover; |
| background-position: center; |
| height: 90vh; |
| } |
| |
| .car-card:hover { |
| transform: translateY(-10px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
| |
| .testimonial-card { |
| transition: all 0.3s ease; |
| } |
| |
| .testimonial-card:hover { |
| transform: scale(1.05); |
| } |
| |
| .contact-form input, .contact-form textarea { |
| transition: all 0.3s ease; |
| } |
| |
| .contact-form input:focus, .contact-form textarea:focus { |
| border-color: #3b82f6; |
| box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); |
| } |
| |
| @keyframes fadeIn { |
| from { opacity: 0; } |
| to { opacity: 1; } |
| } |
| |
| .fade-in { |
| animation: fadeIn 1s ease-in; |
| } |
| </style> |
| </head> |
| <body class="font-sans bg-gray-50"> |
| |
| <header class="bg-white shadow-md sticky top-0 z-50"> |
| <div class="container mx-auto px-6 py-4"> |
| <div class="flex items-center justify-between"> |
| <div class="flex items-center"> |
| <i class="fas fa-car text-blue-600 text-3xl mr-2"></i> |
| <span class="text-xl font-bold text-gray-800">AutoLuxe</span> |
| </div> |
| |
| <div class="hidden md:flex items-center space-x-8"> |
| <a href="#accueil" class="text-gray-800 hover:text-blue-600 font-medium">Accueil</a> |
| <a href="#vehicules" class="text-gray-800 hover:text-blue-600 font-medium">Véhicules</a> |
| <a href="#services" class="text-gray-800 hover:text-blue-600 font-medium">Services</a> |
| <a href="#about" class="text-gray-800 hover:text-blue-600 font-medium">À propos</a> |
| <a href="#contact" class="text-gray-800 hover:text-blue-600 font-medium">Contact</a> |
| </div> |
| |
| <div class="md:hidden"> |
| <button id="menu-btn" class="text-gray-800 focus:outline-none"> |
| <i class="fas fa-bars text-2xl"></i> |
| </button> |
| </div> |
| </div> |
| |
| |
| <div id="mobile-menu" class="hidden md:hidden mt-4"> |
| <a href="#accueil" class="block py-2 text-gray-800 hover:text-blue-600">Accueil</a> |
| <a href="#vehicules" class="block py-2 text-gray-800 hover:text-blue-600">Véhicules</a> |
| <a href="#services" class="block py-2 text-gray-800 hover:text-blue-600">Services</a> |
| <a href="#about" class="block py-2 text-gray-800 hover:text-blue-600">À propos</a> |
| <a href="#contact" class="block py-2 text-gray-800 hover:text-blue-600">Contact</a> |
| </div> |
| </div> |
| </header> |
|
|
| |
| <section id="accueil" class="hero flex items-center justify-center text-white fade-in"> |
| <div class="container mx-auto px-6 text-center"> |
| <h1 class="text-4xl md:text-6xl font-bold mb-6">Votre concessionnaire de confiance</h1> |
| <p class="text-xl md:text-2xl mb-8">Découvrez notre sélection exclusive de véhicules d'exception</p> |
| <div class="flex flex-col md:flex-row justify-center gap-4"> |
| <a href="#vehicules" class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-lg font-medium transition duration-300">Voir nos véhicules</a> |
| <a href="#contact" class="bg-transparent hover:bg-white hover:text-gray-900 border-2 border-white text-white px-8 py-3 rounded-lg font-medium transition duration-300">Nous contacter</a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="vehicules" class="py-16 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-12"> |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">Nos véhicules phares</h2> |
| <p class="text-gray-600 max-w-2xl mx-auto">Découvrez notre sélection de véhicules premium soigneusement sélectionnés pour leur qualité et leur performance.</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="car-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1555215695-3004980ad54e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Porsche 911" class="w-full h-64 object-cover"> |
| <div class="absolute top-4 right-4 bg-blue-600 text-white px-3 py-1 rounded-full text-sm font-medium">Nouveau</div> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-start mb-2"> |
| <h3 class="text-xl font-bold text-gray-800">Porsche 911 Turbo S</h3> |
| <span class="text-blue-600 font-bold">€185,000</span> |
| </div> |
| <div class="flex items-center text-gray-600 mb-4"> |
| <i class="fas fa-tachometer-alt mr-2"></i> |
| <span class="mr-4">12,500 km</span> |
| <i class="fas fa-calendar-alt mr-2"></i> |
| <span>2022</span> |
| </div> |
| <div class="flex flex-wrap gap-2 mb-4"> |
| <span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">Automatique</span> |
| <span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">4x4</span> |
| <span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">650ch</span> |
| </div> |
| <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg font-medium transition duration-300">Voir détails</button> |
| </div> |
| </div> |
| |
| |
| <div class="car-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1493238792000-811adca7d5e4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Range Rover" class="w-full h-64 object-cover"> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-start mb-2"> |
| <h3 class="text-xl font-bold text-gray-800">Range Rover Autobiography</h3> |
| <span class="text-blue-600 font-bold">€135,000</span> |
| </div> |
| <div class="flex items-center text-gray-600 mb-4"> |
| <i class="fas fa-tachometer-alt mr-2"></i> |
| <span class="mr-4">25,300 km</span> |
| <i class="fas fa-calendar-alt mr-2"></i> |
| <span>2021</span> |
| </div> |
| <div class="flex flex-wrap gap-2 mb-4"> |
| <span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">Automatique</span> |
| <span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">4x4</span> |
| <span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">525ch</span> |
| </div> |
| <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg font-medium transition duration-300">Voir détails</button> |
| </div> |
| </div> |
| |
| |
| <div class="car-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1616788494707-18628cdf4253?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Mercedes-Benz" class="w-full h-64 object-cover"> |
| <div class="absolute top-4 right-4 bg-red-500 text-white px-3 py-1 rounded-full text-sm font-medium">Promo</div> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-start mb-2"> |
| <h3 class="text-xl font-bold text-gray-800">Mercedes-Benz S 580</h3> |
| <span class="text-blue-600 font-bold">€120,000</span> |
| </div> |
| <div class="flex items-center text-gray-600 mb-4"> |
| <i class="fas fa-tachometer-alt mr-2"></i> |
| <span class="mr-4">18,700 km</span> |
| <i class="fas fa-calendar-alt mr-2"></i> |
| <span>2022</span> |
| </div> |
| <div class="flex flex-wrap gap-2 mb-4"> |
| <span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">Automatique</span> |
| <span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">4x4</span> |
| <span class="bg-gray-200 px-3 py-1 rounded-full text-sm text-gray-700">503ch</span> |
| </div> |
| <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-lg font-medium transition duration-300">Voir détails</button> |
| </div> |
| </div> |
| </div> |
| |
| <div class="text-center mt-12"> |
| <a href="#" class="inline-block bg-gray-200 hover:bg-gray-300 text-gray-800 px-8 py-3 rounded-lg font-medium transition duration-300">Voir tous nos véhicules</a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="services" class="py-16 bg-gray-100"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-12"> |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">Nos services</h2> |
| <p class="text-gray-600 max-w-2xl mx-auto">Nous offrons une gamme complète de services pour répondre à tous vos besoins automobiles.</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| <div class="bg-white p-8 rounded-lg shadow-md text-center hover:shadow-lg transition duration-300"> |
| <div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4"> |
| <i class="fas fa-car text-blue-600 text-2xl"></i> |
| </div> |
| <h3 class="text-xl font-bold text-gray-800 mb-3">Vente de véhicules</h3> |
| <p class="text-gray-600">Large sélection de véhicules neufs et d'occasion, soigneusement inspectés et garantis.</p> |
| </div> |
| |
| <div class="bg-white p-8 rounded-lg shadow-md text-center hover:shadow-lg transition duration-300"> |
| <div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4"> |
| <i class="fas fa-search-dollar text-blue-600 text-2xl"></i> |
| </div> |
| <h3 class="text-xl font-bold text-gray-800 mb-3">Reprise & Échange</h3> |
| <p class="text-gray-600">Estimation gratuite et reprise de votre ancien véhicule au meilleur prix.</p> |
| </div> |
| |
| <div class="bg-white p-8 rounded-lg shadow-md text-center hover:shadow-lg transition duration-300"> |
| <div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4"> |
| <i class="fas fa-tools text-blue-600 text-2xl"></i> |
| </div> |
| <h3 class="text-xl font-bold text-gray-800 mb-3">Entretien & Réparation</h3> |
| <p class="text-gray-600">Atelier équipé des dernières technologies pour l'entretien et la réparation de votre véhicule.</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="about" class="py-16 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="flex flex-col lg:flex-row items-center"> |
| <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12"> |
| <img src="https://images.unsplash.com/photo-1600880292203-75704362ea02?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Notre concession" class="rounded-lg shadow-lg w-full"> |
| </div> |
| <div class="lg:w-1/2"> |
| <h2 class="text-3xl font-bold text-gray-800 mb-6">À propos d'AutoLuxe</h2> |
| <p class="text-gray-600 mb-4">Fondée en 2005, AutoLuxe s'est rapidement imposée comme une référence dans la vente de véhicules haut de gamme. Notre passion pour l'automobile et notre engagement envers l'excellence nous ont permis de bâtir une réputation solide auprès d'une clientèle exigeante.</p> |
| <p class="text-gray-600 mb-6">Nous sélectionnons avec soin chaque véhicule de notre stock pour vous garantir qualité, performance et fiabilité. Notre équipe d'experts est à votre disposition pour vous conseiller et vous accompagner dans votre projet automobile.</p> |
| |
| <div class="grid grid-cols-2 gap-4 mb-8"> |
| <div class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 text-xl mr-3"></i> |
| <span class="text-gray-700">15 ans d'expérience</span> |
| </div> |
| <div class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 text-xl mr-3"></i> |
| <span class="text-gray-700">+500 véhicules vendus</span> |
| </div> |
| <div class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 text-xl mr-3"></i> |
| <span class="text-gray-700">98% de clients satisfaits</span> |
| </div> |
| <div class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 text-xl mr-3"></i> |
| <span class="text-gray-700">Garantie 12 mois</span> |
| </div> |
| </div> |
| |
| <a href="#contact" class="inline-block bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">Rencontrer notre équipe</a> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-gray-100"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-12"> |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">Témoignages</h2> |
| <p class="text-gray-600 max-w-2xl mx-auto">Ce que nos clients disent de nous</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| <div class="testimonial-card bg-white p-8 rounded-lg shadow-md"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-400 text-xl"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| </div> |
| </div> |
| <p class="text-gray-600 mb-6">"J'ai acheté ma Porsche chez AutoLuxe et je suis extrêmement satisfait. Le service est impeccable et le véhicule était en parfait état."</p> |
| <div class="flex items-center"> |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold text-gray-800">Pierre Martin</h4> |
| <p class="text-gray-600 text-sm">Client depuis 2021</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="testimonial-card bg-white p-8 rounded-lg shadow-md"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-400 text-xl"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| </div> |
| </div> |
| <p class="text-gray-600 mb-6">"Professionnalisme et expertise sont les maîtres mots chez AutoLuxe. Ils ont su me conseiller parfaitement pour mon achat."</p> |
| <div class="flex items-center"> |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold text-gray-800">Sophie Dubois</h4> |
| <p class="text-gray-600 text-sm">Client depuis 2020</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="testimonial-card bg-white p-8 rounded-lg shadow-md"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-400 text-xl"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star-half-alt"></i> |
| </div> |
| </div> |
| <p class="text-gray-600 mb-6">"Excellent rapport qualité-prix. Le suivi après-vente est remarquable. Je recommande vivement AutoLuxe pour tout achat automobile."</p> |
| <div class="flex items-center"> |
| <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold text-gray-800">Jean Lefèvre</h4> |
| <p class="text-gray-600 text-sm">Client depuis 2019</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-16 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-12"> |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">Contactez-nous</h2> |
| <p class="text-gray-600 max-w-2xl mx-auto">Nous sommes à votre disposition pour répondre à toutes vos questions.</p> |
| </div> |
| |
| <div class="flex flex-col lg:flex-row gap-12"> |
| <div class="lg:w-1/2"> |
| <form class="contact-form space-y-6"> |
| <div> |
| <label for="name" class="block text-gray-700 font-medium mb-2">Nom complet</label> |
| <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-blue-500"> |
| </div> |
| <div> |
| <label for="email" class="block text-gray-700 font-medium mb-2">Email</label> |
| <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-blue-500"> |
| </div> |
| <div> |
| <label for="phone" class="block text-gray-700 font-medium mb-2">Téléphone</label> |
| <input type="tel" id="phone" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-blue-500"> |
| </div> |
| <div> |
| <label for="message" class="block text-gray-700 font-medium mb-2">Message</label> |
| <textarea id="message" rows="5" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-blue-500"></textarea> |
| </div> |
| <button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white py-3 rounded-lg font-medium transition duration-300">Envoyer le message</button> |
| </form> |
| </div> |
| |
| <div class="lg:w-1/2"> |
| <div class="bg-gray-100 p-8 rounded-lg h-full"> |
| <h3 class="text-xl font-bold text-gray-800 mb-6">Nos coordonnées</h3> |
| |
| <div class="space-y-6"> |
| <div class="flex items-start"> |
| <div class="bg-blue-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-map-marker-alt text-blue-600"></i> |
| </div> |
| <div> |
| <h4 class="font-bold text-gray-800 mb-1">Adresse</h4> |
| <p class="text-gray-600">123 Avenue des Champs-Élysées, 75008 Paris</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-blue-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-phone-alt text-blue-600"></i> |
| </div> |
| <div> |
| <h4 class="font-bold text-gray-800 mb-1">Téléphone</h4> |
| <p class="text-gray-600">+33 1 23 45 67 89</p> |
| <p class="text-gray-600">+33 6 12 34 56 78</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-blue-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-envelope text-blue-600"></i> |
| </div> |
| <div> |
| <h4 class="font-bold text-gray-800 mb-1">Email</h4> |
| <p class="text-gray-600">contact@autoluxe.com</p> |
| <p class="text-gray-600">ventes@autoluxe.com</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-blue-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-clock text-blue-600"></i> |
| </div> |
| <div> |
| <h4 class="font-bold text-gray-800 mb-1">Horaires</h4> |
| <p class="text-gray-600">Lundi - Vendredi: 9h - 19h</p> |
| <p class="text-gray-600">Samedi: 10h - 18h</p> |
| <p class="text-gray-600">Dimanche: Fermé</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-blue-600 text-white"> |
| <div class="container mx-auto px-6 text-center"> |
| <h2 class="text-3xl font-bold mb-6">Abonnez-vous à notre newsletter</h2> |
| <p class="max-w-2xl mx-auto mb-8">Recevez en exclusivité nos offres spéciales et les nouveautés de notre stock.</p> |
| |
| <form class="max-w-md mx-auto flex flex-col sm:flex-row gap-4"> |
| <input type="email" placeholder="Votre email" class="flex-grow px-4 py-3 rounded-lg focus:outline-none text-gray-800"> |
| <button type="submit" class="bg-white hover:bg-gray-100 text-blue-600 px-6 py-3 rounded-lg font-medium transition duration-300">S'abonner</button> |
| </form> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-900 text-white py-12"> |
| <div class="container mx-auto px-6"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
| <div> |
| <div class="flex items-center mb-4"> |
| <i class="fas fa-car text-blue-400 text-2xl mr-2"></i> |
| <span class="text-xl font-bold">AutoLuxe</span> |
| </div> |
| <p class="text-gray-400 mb-4">Leader dans la vente de véhicules haut de gamme depuis 2005.</p> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a> |
| </div> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-bold mb-4">Liens rapides</h3> |
| <ul class="space-y-2"> |
| <li><a href="#accueil" class="text-gray-400 hover:text-white">Accueil</a></li> |
| <li><a href="#vehicules" class="text-gray-400 hover:text-white">Véhicules</a></li> |
| <li><a href="#services" class="text-gray-400 hover:text-white">Services</a></li> |
| <li><a href="#about" class="text-gray-400 hover:text-white">À propos</a></li> |
| <li><a href="#contact" class="text-gray-400 hover:text-white">Contact</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-bold mb-4">Services</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white">Vente de véhicules</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Reprise & Échange</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Financement</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Entretien & Réparation</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Pièces détachées</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-bold mb-4">Contact</h3> |
| <ul class="space-y-2 text-gray-400"> |
| <li class="flex items-start"> |
| <i class="fas fa-map-marker-alt mr-2 mt-1"></i> |
| <span>123 Avenue des Champs-Élysées, 75008 Paris</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-phone-alt mr-2"></i> |
| <span>+33 1 23 45 67 89</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-envelope mr-2"></i> |
| <span>contact@autoluxe.com</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| |
| <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> |
| <p class="text-gray-400 mb-4 md:mb-0">© 2023 AutoLuxe. Tous droits réservés.</p> |
| <div class="flex space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-white">Mentions légales</a> |
| <a href="#" class="text-gray-400 hover:text-white">Politique de confidentialité</a> |
| <a href="#" class="text-gray-400 hover:text-white">Conditions générales</a> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| document.getElementById('menu-btn').addEventListener('click', function() { |
| document.getElementById('mobile-menu').classList.toggle('hidden'); |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ |
| behavior: 'smooth' |
| }); |
| |
| |
| if (!document.getElementById('mobile-menu').classList.contains('hidden')) { |
| document.getElementById('mobile-menu').classList.add('hidden'); |
| } |
| }); |
| }); |
| |
| |
| document.querySelector('.contact-form').addEventListener('submit', function(e) { |
| e.preventDefault(); |
| alert('Merci pour votre message! Nous vous contacterons bientôt.'); |
| this.reset(); |
| }); |
| |
| |
| document.querySelector('section.bg-blue-600 form').addEventListener('submit', function(e) { |
| e.preventDefault(); |
| alert('Merci pour votre inscription à notre newsletter!'); |
| this.reset(); |
| }); |
| |
| |
| const fadeElements = document.querySelectorAll('.fade-in'); |
| |
| const fadeInOnScroll = () => { |
| fadeElements.forEach(element => { |
| const elementTop = element.getBoundingClientRect().top; |
| const windowHeight = window.innerHeight; |
| |
| if (elementTop < windowHeight - 100) { |
| element.style.opacity = '1'; |
| } |
| }); |
| }; |
| |
| |
| fadeElements.forEach(element => { |
| element.style.opacity = '0'; |
| }); |
| |
| |
| window.addEventListener('scroll', fadeInOnScroll); |
| |
| |
| window.addEventListener('load', fadeInOnScroll); |
| </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=KimJaver/ecars" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |