Lddas commited on
Commit
bdc1283
·
verified ·
1 Parent(s): f1b494f

Can you copy exacty this website https://www.comptoirdesserruriers.fr/?gad_source=6&gad_campaignid=21952929557&gbraid=0AAAAADllDC3vp8YhwMuTkuGdp9D_y61gT&gclid=CjwKCAiAzrbIBhA3EiwAUBaUdcYbrMS8K4jBSYekzO6YQVOfo1mwpulhA9za_UmaH8jREBbLyXfaZhoCp3MQAvD_BwE

Browse files
Files changed (3) hide show
  1. README.md +7 -4
  2. index.html +272 -19
  3. style.css +24 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Locksmith S Haven
3
- emoji:
4
- colorFrom: indigo
5
  colorTo: yellow
 
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: Locksmith's Haven 🔐
3
+ colorFrom: yellow
 
4
  colorTo: yellow
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
index.html CHANGED
@@ -1,19 +1,272 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Comptoir des Serruriers - Serrurier Paris 24h/24</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ </head>
12
+ <body class="font-sans bg-gray-50">
13
+ <!-- Header Component -->
14
+ <custom-header></custom-header>
15
+
16
+ <!-- Hero Section -->
17
+ <section class="bg-blue-800 text-white py-20">
18
+ <div class="container mx-auto px-4">
19
+ <div class="max-w-3xl mx-auto text-center">
20
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Serrurier Paris 24h/24 et 7j/7</h1>
21
+ <p class="text-xl mb-8">Intervention rapide en moins de 30 minutes sur Paris et Île-de-France</p>
22
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
23
+ <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">
24
+ <i data-feather="phone"></i> 01 23 45 67 89
25
+ </a>
26
+ <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">
27
+ <i data-feather="mail"></i> Contactez-nous
28
+ </a>
29
+ </div>
30
+ </div>
31
+ </div>
32
+ </section>
33
+
34
+ <!-- Services Section -->
35
+ <section class="py-16">
36
+ <div class="container mx-auto px-4">
37
+ <h2 class="text-3xl font-bold text-center mb-12 text-blue-800">Nos Services de Serrurerie</h2>
38
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
39
+ <!-- Service 1 -->
40
+ <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition">
41
+ <img src="http://static.photos/technology/640x360/1" alt="Dépannage serrurerie" class="w-full h-48 object-cover">
42
+ <div class="p-6">
43
+ <h3 class="text-xl font-bold mb-3 text-blue-800">Dépannage Serrurerie</h3>
44
+ <p class="text-gray-600 mb-4">Ouverture de porte claquée, clé cassée, porte bloquée... Intervention rapide 24h/24.</p>
45
+ <a href="#" class="text-yellow-600 font-medium flex items-center gap-1">
46
+ En savoir plus <i data-feather="arrow-right" class="w-4 h-4"></i>
47
+ </a>
48
+ </div>
49
+ </div>
50
+
51
+ <!-- Service 2 -->
52
+ <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition">
53
+ <img src="http://static.photos/office/640x360/2" alt="Changement de serrure" class="w-full h-48 object-cover">
54
+ <div class="p-6">
55
+ <h3 class="text-xl font-bold mb-3 text-blue-800">Changement de Serrure</h3>
56
+ <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>
57
+ <a href="#" class="text-yellow-600 font-medium flex items-center gap-1">
58
+ En savoir plus <i data-feather="arrow-right" class="w-4 h-4"></i>
59
+ </a>
60
+ </div>
61
+ </div>
62
+
63
+ <!-- Service 3 -->
64
+ <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition">
65
+ <img src="http://static.photos/construction/640x360/3" alt="Porte blindée" class="w-full h-48 object-cover">
66
+ <div class="p-6">
67
+ <h3 class="text-xl font-bold mb-3 text-blue-800">Porte Blindée</h3>
68
+ <p class="text-gray-600 mb-4">Installation et réparation de portes blindées pour une sécurité optimale de votre domicile.</p>
69
+ <a href="#" class="text-yellow-600 font-medium flex items-center gap-1">
70
+ En savoir plus <i data-feather="arrow-right" class="w-4 h-4"></i>
71
+ </a>
72
+ </div>
73
+ </div>
74
+ </div>
75
+ </div>
76
+ </section>
77
+
78
+ <!-- Emergency Banner -->
79
+ <section class="bg-yellow-500 py-6">
80
+ <div class="container mx-auto px-4">
81
+ <div class="flex flex-col md:flex-row items-center justify-between">
82
+ <div class="flex items-center mb-4 md:mb-0">
83
+ <i data-feather="alert-circle" class="w-8 h-8 mr-3 text-blue-900"></i>
84
+ <h3 class="text-xl font-bold text-blue-900">Urgence Serrurerie 24h/24</h3>
85
+ </div>
86
+ <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">
87
+ <i data-feather="phone"></i> Appelez-nous au 01 23 45 67 89
88
+ </a>
89
+ </div>
90
+ </div>
91
+ </section>
92
+
93
+ <!-- About Section -->
94
+ <section class="py-16 bg-gray-100">
95
+ <div class="container mx-auto px-4">
96
+ <div class="flex flex-col lg:flex-row items-center gap-12">
97
+ <div class="lg:w-1/2">
98
+ <img src="http://static.photos/people/640x360/4" alt="Serrurier professionnel" class="rounded-lg shadow-md w-full">
99
+ </div>
100
+ <div class="lg:w-1/2">
101
+ <h2 class="text-3xl font-bold mb-6 text-blue-800">Serrurier Professionnel à Paris</h2>
102
+ <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>
103
+ <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>
104
+ <div class="flex flex-wrap gap-4">
105
+ <div class="flex items-center bg-white px-4 py-2 rounded-lg shadow-sm">
106
+ <i data-feather="check-circle" class="w-5 h-5 mr-2 text-green-500"></i>
107
+ <span>Disponible 24h/24</span>
108
+ </div>
109
+ <div class="flex items-center bg-white px-4 py-2 rounded-lg shadow-sm">
110
+ <i data-feather="check-circle" class="w-5 h-5 mr-2 text-green-500"></i>
111
+ <span>Intervention rapide</span>
112
+ </div>
113
+ <div class="flex items-center bg-white px-4 py-2 rounded-lg shadow-sm">
114
+ <i data-feather="check-circle" class="w-5 h-5 mr-2 text-green-500"></i>
115
+ <span>Devis gratuit</span>
116
+ </div>
117
+ </div>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </section>
122
+
123
+ <!-- Testimonials -->
124
+ <section class="py-16">
125
+ <div class="container mx-auto px-4">
126
+ <h2 class="text-3xl font-bold text-center mb-12 text-blue-800">Nos Clients Témoignent</h2>
127
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
128
+ <!-- Testimonial 1 -->
129
+ <div class="bg-white p-6 rounded-lg shadow-md">
130
+ <div class="flex items-center mb-4">
131
+ <div class="flex items-center">
132
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
133
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
134
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
135
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
136
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
137
+ </div>
138
+ </div>
139
+ <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>
140
+ <div class="flex items-center">
141
+ <div class="w-10 h-10 rounded-full bg-gray-300 mr-3"></div>
142
+ <div>
143
+ <h4 class="font-medium">Jean D.</h4>
144
+ <p class="text-sm text-gray-500">Paris 15ème</p>
145
+ </div>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Testimonial 2 -->
150
+ <div class="bg-white p-6 rounded-lg shadow-md">
151
+ <div class="flex items-center mb-4">
152
+ <div class="flex items-center">
153
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
154
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
155
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
156
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
157
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
158
+ </div>
159
+ </div>
160
+ <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>
161
+ <div class="flex items-center">
162
+ <div class="w-10 h-10 rounded-full bg-gray-300 mr-3"></div>
163
+ <div>
164
+ <h4 class="font-medium">Marie L.</h4>
165
+ <p class="text-sm text-gray-500">Montreuil</p>
166
+ </div>
167
+ </div>
168
+ </div>
169
+
170
+ <!-- Testimonial 3 -->
171
+ <div class="bg-white p-6 rounded-lg shadow-md">
172
+ <div class="flex items-center mb-4">
173
+ <div class="flex items-center">
174
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
175
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
176
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
177
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
178
+ <i data-feather="star" class="w-5 h-5 text-yellow-500 fill-yellow-500"></i>
179
+ </div>
180
+ </div>
181
+ <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>
182
+ <div class="flex items-center">
183
+ <div class="w-10 h-10 rounded-full bg-gray-300 mr-3"></div>
184
+ <div>
185
+ <h4 class="font-medium">Thomas P.</h4>
186
+ <p class="text-sm text-gray-500">Paris 11ème</p>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ </div>
192
+ </section>
193
+
194
+ <!-- Contact Section -->
195
+ <section id="contact" class="py-16 bg-blue-800 text-white">
196
+ <div class="container mx-auto px-4">
197
+ <div class="max-w-4xl mx-auto">
198
+ <h2 class="text-3xl font-bold text-center mb-12">Contactez-nous</h2>
199
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
200
+ <div>
201
+ <h3 class="text-xl font-bold mb-4">Nos Coordonnées</h3>
202
+ <div class="space-y-4">
203
+ <div class="flex items-start">
204
+ <i data-feather="phone" class="w-5 h-5 mr-3 mt-1"></i>
205
+ <div>
206
+ <p class="font-medium">Téléphone</p>
207
+ <p>01 23 45 67 89</p>
208
+ </div>
209
+ </div>
210
+ <div class="flex items-start">
211
+ <i data-feather="mail" class="w-5 h-5 mr-3 mt-1"></i>
212
+ <div>
213
+ <p class="font-medium">Email</p>
214
+ <p>contact@comptoirdesserruriers.fr</p>
215
+ </div>
216
+ </div>
217
+ <div class="flex items-start">
218
+ <i data-feather="map-pin" class="w-5 h-5 mr-3 mt-1"></i>
219
+ <div>
220
+ <p class="font-medium">Adresse</p>
221
+ <p>123 Avenue des Serruriers, 75001 Paris</p>
222
+ </div>
223
+ </div>
224
+ <div class="flex items-start">
225
+ <i data-feather="clock" class="w-5 h-5 mr-3 mt-1"></i>
226
+ <div>
227
+ <p class="font-medium">Horaires</p>
228
+ <p>24h/24 - 7j/7</p>
229
+ </div>
230
+ </div>
231
+ </div>
232
+ </div>
233
+ <div>
234
+ <h3 class="text-xl font-bold mb-4">Formulaire de Contact</h3>
235
+ <form class="space-y-4">
236
+ <div>
237
+ <label for="name" class="block mb-1">Nom</label>
238
+ <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">
239
+ </div>
240
+ <div>
241
+ <label for="email" class="block mb-1">Email</label>
242
+ <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">
243
+ </div>
244
+ <div>
245
+ <label for="phone" class="block mb-1">Téléphone</label>
246
+ <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">
247
+ </div>
248
+ <div>
249
+ <label for="message" class="block mb-1">Message</label>
250
+ <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>
251
+ </div>
252
+ <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">
253
+ Envoyer
254
+ </button>
255
+ </form>
256
+ </div>
257
+ </div>
258
+ </div>
259
+ </div>
260
+ </section>
261
+
262
+ <!-- Footer Component -->
263
+ <custom-footer></custom-footer>
264
+
265
+ <!-- Scripts -->
266
+ <script src="components/header.js"></script>
267
+ <script src="components/footer.js"></script>
268
+ <script src="script.js"></script>
269
+ <script>feather.replace();</script>
270
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
271
+ </body>
272
+ </html>
style.css CHANGED
@@ -1,28 +1,34 @@
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Custom styles */
2
  body {
3
+ scroll-behavior: smooth;
 
4
  }
5
 
6
+ /* Custom scrollbar */
7
+ ::-webkit-scrollbar {
8
+ width: 8px;
9
  }
10
 
11
+ ::-webkit-scrollbar-track {
12
+ background: #f1f1f1;
 
 
 
13
  }
14
 
15
+ ::-webkit-scrollbar-thumb {
16
+ background: #1e40af;
17
+ border-radius: 4px;
 
 
 
18
  }
19
 
20
+ ::-webkit-scrollbar-thumb:hover {
21
+ background: #1e3a8a;
22
  }
23
+
24
+ /* Animation for buttons */
25
+ .btn-animate {
26
+ transition: all 0.3s ease;
27
+ transform: translateY(0);
28
+ }
29
+
30
+ .btn-animate:hover {
31
+ transform: translateY(-2px);
32
+ }
33
+
34
+ /* Service card