Spaces:
Running
Running
File size: 16,133 Bytes
bdc1283 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Comptoir des Serruriers - Serrurier Paris 24h/24</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="font-sans bg-gray-50">
<!-- Header Component -->
<custom-header></custom-header>
<!-- Hero Section -->
<section class="bg-blue-800 text-white py-20">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Serrurier Paris 24h/24 et 7j/7</h1>
<p class="text-xl mb-8">Intervention rapide en moins de 30 minutes sur Paris et Île-de-France</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="tel:0123456789" class="bg-yellow-500 hover:bg-yellow-600 text-blue-900 font-bold py-3 px-6 rounded-lg flex items-center justify-center gap-2 transition">
<i data-feather="phone"></i> 01 23 45 67 89
</a>
<a href="#contact" class="bg-white hover:bg-gray-100 text-blue-800 font-bold py-3 px-6 rounded-lg flex items-center justify-center gap-2 transition">
<i data-feather="mail"></i> Contactez-nous
</a>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section class="py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-blue-800">Nos Services de Serrurerie</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition">
<img src="http://static.photos/technology/640x360/1" alt="Dépannage serrurerie" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-blue-800">Dépannage Serrurerie</h3>
<p class="text-gray-600 mb-4">Ouverture de porte claquée, clé cassée, porte bloquée... Intervention rapide 24h/24.</p>
<a href="#" class="text-yellow-600 font-medium flex items-center gap-1">
En savoir plus <i data-feather="arrow-right" class="w-4 h-4"></i>
</a>
</div>
</div>
<!-- Service 2 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition">
<img src="http://static.photos/office/640x360/2" alt="Changement de serrure" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-blue-800">Changement de Serrure</h3>
<p class="text-gray-600 mb-4">Remplacement de votre serrure pour plus de sécurité après un vol ou une perte de clés.</p>
<a href="#" class="text-yellow-600 font-medium flex items-center gap-1">
En savoir plus <i data-feather="arrow-right" class="w-4 h-4"></i>
</a>
</div>
</div>
<!-- Service 3 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition">
<img src="http://static.photos/construction/640x360/3" alt="Porte blindée" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-blue-800">Porte Blindée</h3>
<p class="text-gray-600 mb-4">Installation et réparation de portes blindées pour une sécurité optimale de votre domicile.</p>
<a href="#" class="text-yellow-600 font-medium flex items-center gap-1">
En savoir plus <i data-feather="arrow-right" class="w-4 h-4"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Emergency Banner -->
<section class="bg-yellow-500 py-6">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="flex items-center mb-4 md:mb-0">
<i data-feather="alert-circle" class="w-8 h-8 mr-3 text-blue-900"></i>
<h3 class="text-xl font-bold text-blue-900">Urgence Serrurerie 24h/24</h3>
</div>
<a href="tel:0123456789" class="bg-blue-900 hover:bg-blue-800 text-white font-bold py-3 px-6 rounded-lg flex items-center justify-center gap-2 transition">
<i data-feather="phone"></i> Appelez-nous au 01 23 45 67 89
</a>
</div>
</div>
</section>
<!-- About Section -->
<section class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center gap-12">
<div class="lg:w-1/2">
<img src="http://static.photos/people/640x360/4" alt="Serrurier professionnel" class="rounded-lg shadow-md w-full">
</div>
<div class="lg:w-1/2">
<h2 class="text-3xl font-bold mb-6 text-blue-800">Serrurier Professionnel à Paris</h2>
<p class="text-gray-600 mb-4">Depuis plus de 15 ans, Comptoir des Serruriers intervient rapidement pour tous vos problèmes de serrurerie sur Paris et en Île-de-France.</p>
<p class="text-gray-600 mb-6">Nos artisans serruriers sont diplômés et expérimentés pour répondre à toutes vos demandes : ouverture de porte, changement de serrure, installation de porte blindée, etc.</p>
<div class="flex flex-wrap gap-4">
<div class="flex items-center bg-white px-4 py-2 rounded-lg shadow-sm">
<i data-feather="check-circle" class="w-5 h-5 mr-2 text-green-500"></i>
<span>Disponible 24h/24</span>
</div>
<div class="flex items-center bg-white px-4 py-2 rounded-lg shadow-sm">
<i data-feather="check-circle" class="w-5 h-5 mr-2 text-green-500"></i>
<span>Intervention rapide</span>
</div>
<div class="flex items-center bg-white px-4 py-2 rounded-lg shadow-sm">
<i data-feather="check-circle" class="w-5 h-5 mr-2 text-green-500"></i>
<span>Devis gratuit</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-blue-800">Nos Clients Témoignent</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="flex items-center">
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
</div>
</div>
<p class="text-gray-600 mb-4">"Intervention très rapide, le serrurier est arrivé en moins de 20 minutes. Professionnel et sympathique, je recommande !"</p>
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-gray-300 mr-3"></div>
<div>
<h4 class="font-medium">Jean D.</h4>
<p class="text-sm text-gray-500">Paris 15ème</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="flex items-center">
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
</div>
</div>
<p class="text-gray-600 mb-4">"J'ai été agréablement surprise par la rapidité et le professionnalisme. Prix très correct pour une intervention en urgence à 2h du matin."</p>
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-gray-300 mr-3"></div>
<div>
<h4 class="font-medium">Marie L.</h4>
<p class="text-sm text-gray-500">Montreuil</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="flex items-center">
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
<i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
</div>
</div>
<p class="text-gray-600 mb-4">"Le technicien a su me conseiller pour renforcer la sécurité de mon appartement. Travail soigné et propre. Merci !"</p>
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-gray-300 mr-3"></div>
<div>
<h4 class="font-medium">Thomas P.</h4>
<p class="text-sm text-gray-500">Paris 11ème</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-blue-800 text-white">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-12">Contactez-nous</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">Nos Coordonnées</h3>
<div class="space-y-4">
<div class="flex items-start">
<i data-feather="phone" class="w-5 h-5 mr-3 mt-1"></i>
<div>
<p class="font-medium">Téléphone</p>
<p>01 23 45 67 89</p>
</div>
</div>
<div class="flex items-start">
<i data-feather="mail" class="w-5 h-5 mr-3 mt-1"></i>
<div>
<p class="font-medium">Email</p>
<p>contact@comptoirdesserruriers.fr</p>
</div>
</div>
<div class="flex items-start">
<i data-feather="map-pin" class="w-5 h-5 mr-3 mt-1"></i>
<div>
<p class="font-medium">Adresse</p>
<p>123 Avenue des Serruriers, 75001 Paris</p>
</div>
</div>
<div class="flex items-start">
<i data-feather="clock" class="w-5 h-5 mr-3 mt-1"></i>
<div>
<p class="font-medium">Horaires</p>
<p>24h/24 - 7j/7</p>
</div>
</div>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Formulaire de Contact</h3>
<form class="space-y-4">
<div>
<label for="name" class="block mb-1">Nom</label>
<input type="text" id="name" class="w-full px-4 py-2 rounded-lg bg-blue-700 border border-blue-600 focus:outline-none focus:ring-2 focus:ring-yellow-500">
</div>
<div>
<label for="email" class="block mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 rounded-lg bg-blue-700 border border-blue-600 focus:outline-none focus:ring-2 focus:ring-yellow-500">
</div>
<div>
<label for="phone" class="block mb-1">Téléphone</label>
<input type="tel" id="phone" class="w-full px-4 py-2 rounded-lg bg-blue-700 border border-blue-600 focus:outline-none focus:ring-2 focus:ring-yellow-500">
</div>
<div>
<label for="message" class="block mb-1">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 rounded-lg bg-blue-700 border border-blue-600 focus:outline-none focus:ring-2 focus:ring-yellow-500"></textarea>
</div>
<button type="submit" class="bg-yellow-500 hover:bg-yellow-600 text-blue-900 font-bold py-3 px-6 rounded-lg transition w-full">
Envoyer
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Component -->
<custom-footer></custom-footer>
<!-- Scripts -->
<script src="components/header.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |