Spaces:
Running
Running
| <html lang="fr"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>MGH Immobilier - Agence immobilière à Créteil</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> | |
| :root { | |
| --primary: #a67c52; | |
| --primary-dark: #8c6b4a; | |
| --secondary: #f5f5dc; | |
| --light: #f8f8f8; | |
| --dark: #333; | |
| } | |
| .hero-section { | |
| background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1473&q=80'); | |
| background-size: cover; | |
| background-position: center; | |
| } | |
| .property-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(166, 124, 82, 0.2); | |
| } | |
| .service-card:hover .service-icon { | |
| transform: scale(1.1); | |
| } | |
| .search-tabs .active { | |
| border-bottom: 3px solid var(--primary); | |
| color: var(--primary); | |
| } | |
| .btn-primary { | |
| background-color: var(--primary); | |
| color: white; | |
| } | |
| .btn-primary:hover { | |
| background-color: var(--primary-dark); | |
| } | |
| .instagram-stories { | |
| display: flex; | |
| justify-content: center; | |
| gap: 15px; | |
| padding: 20px 0; | |
| } | |
| .story-circle { | |
| width: 80px; | |
| height: 80px; | |
| border-radius: 50%; | |
| border: 2px solid var(--primary); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| overflow: hidden; | |
| cursor: pointer; | |
| } | |
| .video-thumbnail { | |
| position: relative; | |
| border-radius: 8px; | |
| overflow: hidden; | |
| } | |
| .play-icon { | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| color: white; | |
| font-size: 40px; | |
| opacity: 0.8; | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans bg-gray-50"> | |
| <!-- Header --> | |
| <header class="bg-white shadow-sm sticky top-0 z-50"> | |
| <div class="container mx-auto px-4 py-3 flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <a href="/" class="flex items-center"> | |
| <img src="https://imhotep.blob.core.windows.net/picturelogo/04f6df5a-588b-4a86-92f0-ce011498dbf0/logo-dark-trans-300-41.png" alt="MGH Immobilier" class="h-12"> | |
| </a> | |
| </div> | |
| <div class="hidden md:flex space-x-6"> | |
| <a href="/" class="text-gray-700 hover:text-primary transition">Accueil</a> | |
| <a href="/acheter" class="text-gray-700 hover:text-primary transition">Acheter</a> | |
| <a href="/estimation" class="text-gray-700 hover:text-primary transition">Estimation</a> | |
| <a href="/vendre" class="text-gray-700 hover:text-primary transition">Vendre</a> | |
| <a href="/agence" class="text-gray-700 hover:text-primary transition">Agence</a> | |
| <a href="/contact" class="text-gray-700 hover:text-primary transition">Contact</a> | |
| </div> | |
| <button class="md:hidden text-gray-700" id="mobile-menu-button"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div class="md:hidden hidden bg-white py-2 px-4 shadow-md" id="mobile-menu"> | |
| <a href="/agence/1" class="block py-2 text-gray-700 hover:text-blue-600 transition">Agence</a> | |
| <a href="/annonces" class="block py-2 text-gray-700 hover:text-blue-600 transition">Acheter</a> | |
| <a href="/estimation" class="block py-2 text-gray-700 hover:text-blue-600 transition">Estimer</a> | |
| <a href="/recrutement" class="block py-2 text-gray-700 hover:text-blue-600 transition">Recrutement</a> | |
| <a href="/contact" class="block py-2 text-gray-700 hover:text-blue-600 transition">Contact</a> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section class="hero-section text-white py-20 md:py-32"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">Votre projet immobilier à Créteil</h1> | |
| <p class="text-xl md:text-2xl mb-8 max-w-2xl mx-auto">Nous vous accompagnons dans tous vos projets immobiliers avec expertise et professionnalisme.</p> | |
| <div class="bg-white rounded-lg shadow-lg max-w-4xl mx-auto p-4"> | |
| <div class="flex border-b search-tabs"> | |
| <button class="px-4 py-2 font-medium active">Vente</button> | |
| <button class="px-4 py-2 font-medium">Location</button> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-5 gap-4 p-4"> | |
| <div> | |
| <label class="block text-gray-700 text-sm font-bold mb-2 text-left">Localisation</label> | |
| <input type="text" class="w-full p-2 border rounded" placeholder="Paris, Créteil..."> | |
| </div> | |
| <div> | |
| <label class="block text-gray-700 text-sm font-bold mb-2 text-left">Type de bien</label> | |
| <select class="w-full p-2 border rounded"> | |
| <option>Tous</option> | |
| <option>Appartement</option> | |
| <option>Maison</option> | |
| <option>Parking</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label class="block text-gray-700 text-sm font-bold mb-2 text-left">Budget</label> | |
| <select class="w-full p-2 border rounded"> | |
| <option>100 000 €</option> | |
| <option>200 000 €</option> | |
| <option>300 000 €</option> | |
| <option>500 000 €</option> | |
| <option>+1 000 000 €</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label class="block text-gray-700 text-sm font-bold mb-2 text-left">Surface</label> | |
| <select class="w-full p-2 border rounded"> | |
| <option>20m²</option> | |
| <option>50m²</option> | |
| <option>80m²</option> | |
| <option>100m²</option> | |
| <option>+150m²</option> | |
| </select> | |
| </div> | |
| <div class="flex items-end"> | |
| <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded transition"> | |
| Rechercher <i class="fas fa-search ml-2"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Instagram Stories --> | |
| <section class="bg-secondary py-8"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-2xl font-bold text-center mb-6">Nos dernières actualités</h2> | |
| <div class="instagram-stories"> | |
| <div class="story-circle"> | |
| <img src="https://via.placeholder.com/80x80" alt="Nouveau bien" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="story-circle"> | |
| <img src="https://via.placeholder.com/80x80" alt="Visite virtuelle" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="story-circle"> | |
| <img src="https://via.placeholder.com/80x80" alt="Conseils immo" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="story-circle"> | |
| <img src="https://via.placeholder.com/80x80" alt="Témoignage" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="story-circle"> | |
| <img src="https://via.placeholder.com/80x80" alt="Événement" class="w-full h-full object-cover"> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Latest Videos --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold text-center mb-12">Nos dernières vidéos</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="video-thumbnail"> | |
| <img src="https://via.placeholder.com/400x225" alt="Video 1" class="w-full"> | |
| <div class="play-icon"> | |
| <i class="fas fa-play"></i> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-bold">Visite virtuelle d'une maison d'exception</h3> | |
| </div> | |
| </div> | |
| <div class="video-thumbnail"> | |
| <img src="https://via.placeholder.com/400x225" alt="Video 2" class="w-full"> | |
| <div class="play-icon"> | |
| <i class="fas fa-play"></i> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-bold">Conseils pour vendre rapidement</h3> | |
| </div> | |
| </div> | |
| <div class="video-thumbnail"> | |
| <img src="https://via.placeholder.com/400x225" alt="Video 3" class="w-full"> | |
| <div class="play-icon"> | |
| <i class="fas fa-play"></i> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-bold">Témoignage client satisfait</h3> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold text-center mb-12">Nos services immobiliers</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <!-- Service 1 --> | |
| <div class="service-card bg-gray-50 rounded-lg p-6 shadow-md transition duration-300"> | |
| <div class="service-icon w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-4 transition duration-300"> | |
| <i class="fas fa-home text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Acheter un bien</h3> | |
| <p class="text-gray-600 mb-4">Trouvez le bien immobilier qui vous correspond avec notre accompagnement personnalisé et sécurisé.</p> | |
| <a href="/annonces" class="text-blue-600 font-medium flex items-center"> | |
| Découvrir nos biens <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <!-- Service 2 --> | |
| <div class="service-card bg-gray-50 rounded-lg p-6 shadow-md transition duration-300"> | |
| <div class="service-icon w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-4 transition duration-300"> | |
| <i class="fas fa-euro-sign text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Estimer votre bien</h3> | |
| <p class="text-gray-600 mb-4">Obtenez une estimation précise et réaliste de votre bien grâce à notre expertise du marché local.</p> | |
| <a href="/estimation" class="text-blue-600 font-medium flex items-center"> | |
| Demander une estimation <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <!-- Service 3 --> | |
| <div class="service-card bg-gray-50 rounded-lg p-6 shadow-md transition duration-300"> | |
| <div class="service-icon w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-4 transition duration-300"> | |
| <i class="fas fa-key text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Vendre votre bien</h3> | |
| <p class="text-gray-600 mb-4">Confiez-nous la vente de votre bien pour une transaction rapide et au meilleur prix.</p> | |
| <a href="/contact" class="text-blue-600 font-medium flex items-center"> | |
| Nous contacter <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Featured Properties --> | |
| <section class="py-16 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex justify-between items-center mb-8"> | |
| <h2 class="text-3xl font-bold">Nos dernières offres</h2> | |
| <a href="/annonces" class="text-blue-600 font-medium flex items-center"> | |
| Voir tout <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6"> | |
| <!-- Property 1 --> | |
| <div class="property-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
| <div class="relative"> | |
| <img src="https://imhoteppicture.blob.core.windows.net/751002/3da754a3-4da1-4106-96dd-b2b6703a9ac3-320-32.jpg" alt="Maison Saint-Maur-Des-Fosses" class="w-full h-48 object-cover"> | |
| <div class="absolute top-2 left-2 bg-blue-600 text-white text-xs px-2 py-1 rounded">Nouveau</div> | |
| <div class="absolute bottom-2 right-2 bg-white text-gray-800 text-xs px-2 py-1 rounded">1/5</div> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-bold text-lg mb-1">MAISON 4 pièces</h3> | |
| <p class="text-gray-600 text-sm mb-2">Saint-Maur-Des-Fosses - 94100</p> | |
| <div class="flex justify-between items-center mb-3"> | |
| <span class="font-bold text-blue-600">580 000 €</span> | |
| <div class="flex items-center text-sm text-gray-500"> | |
| <i class="fas fa-ruler-combined mr-1"></i> 100m² | |
| <i class="fas fa-bed ml-3 mr-1"></i> 3 | |
| </div> | |
| </div> | |
| <div class="flex items-center text-sm text-gray-500 mb-3"> | |
| <i class="fas fa-tree mr-1"></i> Jardin 82m² | |
| </div> | |
| <a href="/annonces/bien/maison-saint-maur-des-fosses-4pieces-247811.html" class="block w-full text-center bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded transition"> | |
| Voir le bien | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Property 2 --> | |
| <div class="property-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
| <div class="relative"> | |
| <img src="https://imhoteppicture.blob.core.windows.net/751002/45429a99-9680-4262-9559-652ba7d6ec31-320-32.jpg" alt="Maison SOGNOLLES EN MONTOIS" class="w-full h-48 object-cover"> | |
| <div class="absolute bottom-2 right-2 bg-white text-gray-800 text-xs px-2 py-1 rounded">1/17</div> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-bold text-lg mb-1">MAISON 7 pièces</h3> | |
| <p class="text-gray-600 text-sm mb-2">SOGNOLLES EN MONTOIS - 77520</p> | |
| <div class="flex justify-between items-center mb-3"> | |
| <span class="font-bold text-blue-600">330 000 €</span> | |
| <div class="flex items-center text-sm text-gray-500"> | |
| <i class="fas fa-ruler-combined mr-1"></i> 168m² | |
| <i class="fas fa-bed ml-3 mr-1"></i> 3 | |
| </div> | |
| </div> | |
| <div class="flex items-center text-sm text-gray-500 mb-3"> | |
| <i class="fas fa-tree mr-1"></i> Jardin 1200m² | |
| </div> | |
| <a href="/annonces/bien/maison-sognolles-en-montois-7pieces-247815.html" class="block w-full text-center bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded transition"> | |
| Voir le bien | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Property 3 --> | |
| <div class="property-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
| <div class="relative"> | |
| <img src="https://imhoteppicture.blob.core.windows.net/751002/fe31a1d1-75ff-4df4-b3c5-54e3c6163919-320-32.jpg" alt="Appartement Paris" class="w-full h-48 object-cover"> | |
| <div class="absolute top-2 left-2 bg-blue-600 text-white text-xs px-2 py-1 rounded">Coup de cœur</div> | |
| <div class="absolute bottom-2 right-2 bg-white text-gray-800 text-xs px-2 py-1 rounded">1/10</div> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-bold text-lg mb-1">APPARTEMENT 2 pièces</h3> | |
| <p class="text-gray-600 text-sm mb-2">Paris - 75018</p> | |
| <div class="flex justify-between items-center mb-3"> | |
| <span class="font-bold text-blue-600">524 700 €</span> | |
| <div class="flex items-center text-sm text-gray-500"> | |
| <i class="fas fa-ruler-combined mr-1"></i> 45.9m² | |
| <i class="fas fa-bed ml-3 mr-1"></i> 1 | |
| </div> | |
| </div> | |
| <div class="flex items-center text-sm text-gray-500 mb-3"> | |
| <i class="fas fa-building mr-1"></i> 0ème étage | |
| </div> | |
| <a href="/annonces/bien/appartement-paris-2pieces-259141.html" class="block w-full text-center bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded transition"> | |
| Voir le bien | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Property 4 --> | |
| <div class="property-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
| <div class="relative"> | |
| <img src="https://imhoteppicture.blob.core.windows.net/751002/d04a677c-a383-47e3-98f9-1aa0aaa6ddaf-320-32.jpg" alt="Parking Paris" class="w-full h-48 object-cover"> | |
| <div class="absolute bottom-2 right-2 bg-white text-gray-800 text-xs px-2 py-1 rounded">1/5</div> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-bold text-lg mb-1">PARKING</h3> | |
| <p class="text-gray-600 text-sm mb-2">Paris - 75011</p> | |
| <div class="flex justify-between items-center mb-3"> | |
| <span class="font-bold text-blue-600">25 000 €</span> | |
| <div class="flex items-center text-sm text-gray-500"> | |
| <i class="fas fa-ruler-combined mr-1"></i> 0m² | |
| </div> | |
| </div> | |
| <a href="/annonces/bien/parking-paris-259196.html" class="block w-full text-center bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded transition"> | |
| Voir le bien | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section class="py-16 bg-blue-600 text-white"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold text-center mb-12">Ils nous ont fait confiance</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <!-- Testimonial 1 --> | |
| <div class="bg-blue-700 p-6 rounded-lg"> | |
| <div class="flex items-center mb-4"> | |
| <div class="text-yellow-400 mr-2"> | |
| <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> | |
| <span class="text-sm">5/5</span> | |
| </div> | |
| <p class="italic mb-4">"L'équipe de MGH Immobilier a été d'une grande aide pour la vente de notre appartement. Professionnalisme et réactivité à toute épreuve."</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Client" class="w-10 h-10 rounded-full mr-3"> | |
| <div> | |
| <h4 class="font-semibold">Sophie D.</h4> | |
| <p class="text-sm text-blue-200">Paris 11ème</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Testimonial 2 --> | |
| <div class="bg-blue-700 p-6 rounded-lg"> | |
| <div class="flex items-center mb-4"> | |
| <div class="text-yellow-400 mr-2"> | |
| <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> | |
| <span class="text-sm">5/5</span> | |
| </div> | |
| <p class="italic mb-4">"Nous avons trouvé notre maison idéale grâce à leur connaissance parfaite du marché local et leur écoute attentive de nos besoins."</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client" class="w-10 h-10 rounded-full mr-3"> | |
| <div> | |
| <h4 class="font-semibold">Thomas L.</h4> | |
| <p class="text-sm text-blue-200">Saint-Maur-des-Fossés</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Testimonial 3 --> | |
| <div class="bg-blue-700 p-6 rounded-lg"> | |
| <div class="flex items-center mb-4"> | |
| <div class="text-yellow-400 mr-2"> | |
| <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> | |
| <span class="text-sm">4.5/5</span> | |
| </div> | |
| <p class="italic mb-4">"Estimation très précise de notre bien et vente réalisée en moins d'un mois. Nous recommandons vivement cette agence."</p> | |
| <div class="flex items-center"> | |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Client" class="w-10 h-10 rounded-full mr-3"> | |
| <div> | |
| <h4 class="font-semibold">Camille R.</h4> | |
| <p class="text-sm text-blue-200">Bry-sur-Marne</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-8"> | |
| <a href="#" class="inline-block bg-white text-blue-600 hover:bg-gray-100 font-medium py-2 px-6 rounded-full transition"> | |
| Voir tous les avis (63) | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Team Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold text-center mb-12">Notre équipe</h2> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8"> | |
| <!-- Team Member 1 --> | |
| <div class="text-center"> | |
| <img src="https://imhotep.blob.core.windows.net/pictureadvisor/751002-0000000314-b15dd8.jpg" alt="Yannick Poli" class="w-32 h-32 rounded-full mx-auto mb-4 object-cover"> | |
| <h3 class="text-xl font-semibold">Yannick Poli</h3> | |
| <p class="text-gray-600 mb-2">Directeur</p> | |
| <div class="flex justify-center space-x-3"> | |
| <a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-linkedin"></i></a> | |
| <a href="#" class="text-blue-600 hover:text-blue-800"><i class="fas fa-envelope"></i></a> | |
| </div> | |
| </div> | |
| <!-- Add more team members here --> | |
| <div class="text-center"> | |
| <img src="https://randomuser.me/api/portraits/women/63.jpg" alt="Team Member" class="w-32 h-32 rounded-full mx-auto mb-4 object-cover"> | |
| <h3 class="text-xl font-semibold">Marie Dupont</h3> | |
| <p class="text-gray-600 mb-2">Conseillère immobilière</p> | |
| <div class="flex justify-center space-x-3"> | |
| <a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-linkedin"></i></a> | |
| <a href="#" class="text-blue-600 hover:text-blue-800"><i class="fas fa-envelope"></i></a> | |
| </div> | |
| </div> | |
| <div class="text-center"> | |
| <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Team Member" class="w-32 h-32 rounded-full mx-auto mb-4 object-cover"> | |
| <h3 class="text-xl font-semibold">Jean Martin</h3> | |
| <p class="text-gray-600 mb-2">Conseiller immobilier</p> | |
| <div class="flex justify-center space-x-3"> | |
| <a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-linkedin"></i></a> | |
| <a href="#" class="text-blue-600 hover:text-blue-800"><i class="fas fa-envelope"></i></a> | |
| </div> | |
| </div> | |
| <div class="text-center"> | |
| <img src="https://randomuser.me/api/portraits/women/33.jpg" alt="Team Member" class="w-32 h-32 rounded-full mx-auto mb-4 object-cover"> | |
| <h3 class="text-xl font-semibold">Sophie Leroy</h3> | |
| <p class="text-gray-600 mb-2">Chargée de clientèle</p> | |
| <div class="flex justify-center space-x-3"> | |
| <a href="#" class="text-blue-600 hover:text-blue-800"><i class="fab fa-linkedin"></i></a> | |
| <a href="#" class="text-blue-600 hover:text-blue-800"><i class="fas fa-envelope"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Newsletter --> | |
| <section class="py-16 bg-gray-100"> | |
| <div class="container mx-auto px-4 max-w-4xl"> | |
| <div class="bg-white rounded-lg shadow-md p-8 text-center"> | |
| <h2 class="text-2xl font-bold mb-4">Recevez nos nouvelles offres par email</h2> | |
| <p class="text-gray-600 mb-6">Inscrivez-vous à notre newsletter pour être informé des nouveaux biens disponibles.</p> | |
| <form class="flex flex-col sm:flex-row gap-4"> | |
| <input type="email" placeholder="Votre email" class="flex-grow p-3 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| <button type="submit" class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg transition"> | |
| S'inscrire | |
| </button> | |
| </form> | |
| <p class="text-xs text-gray-500 mt-4">Nous ne partagerons jamais votre email avec des tiers.</p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-brown-800 text-white pt-12 pb-6"> | |
| <!-- Google Reviews Badge --> | |
| <div class="bg-brown-700 py-6 mb-8"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <div class="flex justify-center items-center mb-4"> | |
| <div class="text-yellow-400 mr-2 text-2xl"> | |
| <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> | |
| <span class="text-xl font-bold">4.8/5 sur 142 avis Google</span> | |
| </div> | |
| <a href="#" class="inline-block bg-white text-brown-800 hover:bg-gray-100 font-medium py-2 px-6 rounded-full transition"> | |
| Voir tous les avis | |
| </a> | |
| </div> | |
| </div> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8"> | |
| <!-- About --> | |
| <div> | |
| <img src="https://imhotep.blob.core.windows.net/picturelogo/04f6df5a-588b-4a86-92f0-ce011498dbf0/logo-light-trans-300-41.png" alt="MGH Immobilier" class="h-10 mb-4"> | |
| <p class="mb-4">Agence immobilière à Créteil et alentours. Achat, vente, estimation de biens : notre équipe est à votre écoute.</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-instagram"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a> | |
| </div> | |
| </div> | |
| <!-- Estimation --> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Estimation par ville</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Estimation Paris</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Estimation Paris 11Eme Arrondissement</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Estimation Créteil</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Estimation Saint-Maur-des-Fossés</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Estimation Choisy-le-Roi</a></li> | |
| </ul> | |
| </div> | |
| <!-- Properties --> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Nos biens</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Maison SOGNOLLES EN MONTOIS</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Maison Saint-Maur-Des-Fosses</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Appartement Paris</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Appartement Paris 11Eme Arrondissement</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Parking Paris</a></li> | |
| </ul> | |
| </div> | |
| <!-- Information --> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Informations</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Nous contacter</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Estimation gratuite</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Recrutement</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Honoraires</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Mentions légales</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Politique de confidentialité</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">CGU</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Plan du site</a></li> | |
| </ul> | |
| </div> | |
| <!-- Local SEO --> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Zones d'intervention</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Immobilier Créteil</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Immobilier Paris</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Immobilier Val-de-Marne</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Immobilier Saint-Maur</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Immobilier Choisy-le-Roi</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Immobilier Maisons-Alfort</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 pt-6 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 MGH Immobilier. Tous droits réservés.</p> | |
| <p class="text-gray-400 text-sm">Site conçu par Planitron</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
| const menu = document.getElementById('mobile-menu'); | |
| menu.classList.toggle('hidden'); | |
| }); | |
| // Search tabs | |
| const tabs = document.querySelectorAll('.search-tabs button'); | |
| tabs.forEach(tab => { | |
| tab.addEventListener('click', function() { | |
| tabs.forEach(t => t.classList.remove('active')); | |
| this.classList.add('active'); | |
| }); | |
| }); | |
| // Smooth scrolling for anchor links | |
| 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=sodipeng/site-model-1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |