frondoc commited on
Commit
434455e
·
verified ·
1 Parent(s): eabf6b2

Crée moi une boutique de vente de machine qui pourrait être fonctionne et personnalisé avec un lien de paiement MTN money - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +507 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Machine
3
- emoji: 👀
4
- colorFrom: pink
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: machine
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,507 @@
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>PowerTools - Boutique de Machines Professionnelles</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ /* Custom CSS for elements Tailwind can't handle easily */
11
+ .gradient-bg {
12
+ background: linear-gradient(135deg, #4f46e5 0%, #10b981 100%);
13
+ }
14
+ .product-card:hover {
15
+ transform: translateY(-5px);
16
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
17
+ }
18
+ .payment-modal {
19
+ animation: fadeIn 0.3s ease-out;
20
+ }
21
+ @keyframes fadeIn {
22
+ from { opacity: 0; transform: translateY(20px); }
23
+ to { opacity: 1; transform: translateY(0); }
24
+ }
25
+ </style>
26
+ </head>
27
+ <body class="font-sans bg-gray-50">
28
+ <!-- Navigation -->
29
+ <nav class="bg-white shadow-lg">
30
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
31
+ <div class="flex justify-between h-16">
32
+ <div class="flex items-center">
33
+ <a href="#" class="flex-shrink-0 flex items-center">
34
+ <i class="fas fa-tools text-blue-600 text-2xl mr-2"></i>
35
+ <span class="text-xl font-bold text-gray-800">PowerTools</span>
36
+ </a>
37
+ </div>
38
+ <div class="hidden md:flex items-center space-x-8">
39
+ <a href="#products" class="text-gray-800 hover:text-blue-600 px-3 py-2">Machines</a>
40
+ <a href="#about" class="text-gray-800 hover:text-blue-600 px-3 py-2">À propos</a>
41
+ <a href="#contact" class="text-gray-800 hover:text-blue-600 px-3 py-2">Contact</a>
42
+ <a href="#" id="cart-btn" class="relative text-gray-800 hover:text-blue-600 px-3 py-2">
43
+ <i class="fas fa-shopping-cart text-xl"></i>
44
+ <span id="cart-count" class="absolute -top-1 -right-1 bg-blue-600 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">0</span>
45
+ </a>
46
+ </div>
47
+ <div class="md:hidden flex items-center">
48
+ <button id="mobile-menu-button" class="text-gray-800 hover:text-blue-600 focus:outline-none">
49
+ <i class="fas fa-bars text-xl"></i>
50
+ </button>
51
+ </div>
52
+ </div>
53
+ </div>
54
+ <!-- Mobile menu -->
55
+ <div id="mobile-menu" class="md:hidden hidden pb-3 px-4">
56
+ <a href="#products" class="block text-gray-800 hover:bg-gray-100 px-3 py-2 rounded-md">Machines</a>
57
+ <a href="#about" class="block text-gray-800 hover:bg-gray-100 px-3 py-2 rounded-md">À propos</a>
58
+ <a href="#contact" class="block text-gray-800 hover:bg-gray-100 px-3 py-2 rounded-md">Contact</a>
59
+ <a href="#" id="mobile-cart-btn" class="block text-gray-800 hover:bg-gray-100 px-3 py-2 rounded-md flex items-center">
60
+ <i class="fas fa-shopping-cart mr-2"></i> Panier (<span id="mobile-cart-count">0</span>)
61
+ </a>
62
+ </div>
63
+ </nav>
64
+
65
+ <!-- Hero Section -->
66
+ <section class="gradient-bg text-white py-16">
67
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
68
+ <div class="md:flex items-center">
69
+ <div class="md:w-1/2 mb-10 md:mb-0">
70
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Machines professionnelles de qualité</h1>
71
+ <p class="text-xl mb-8">Découvrez notre gamme de machines industrielles et outils professionnels pour vos projets les plus exigeants.</p>
72
+ <a href="#products" class="bg-white text-blue-600 font-semibold px-6 py-3 rounded-lg hover:bg-gray-100 transition duration-300 inline-block">Explorer nos produits</a>
73
+ </div>
74
+ <div class="md:w-1/2 flex justify-center">
75
+ <img src="https://images.unsplash.com/photo-1595941069915-4ebc5197c14a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1280&q=80"
76
+ alt="Machines industrielles"
77
+ class="rounded-lg shadow-2xl max-w-full h-auto">
78
+ </div>
79
+ </div>
80
+ </div>
81
+ </section>
82
+
83
+ <!-- Products Section -->
84
+ <section id="products" class="py-16 bg-white">
85
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
86
+ <h2 class="text-3xl font-bold text-center mb-12">Nos Machines</h2>
87
+
88
+ <!-- Product Filters -->
89
+ <div class="mb-8 flex flex-wrap justify-center gap-4">
90
+ <button class="category-btn px-4 py-2 rounded-full bg-blue-600 text-white" data-category="all">Tous</button>
91
+ <button class="category-btn px-4 py-2 rounded-full bg-gray-200 hover:bg-gray-300" data-category="construction">Construction</button>
92
+ <button class="category-btn px-4 py-2 rounded-full bg-gray-200 hover:bg-gray-300" data-category="agriculture">Agriculture</button>
93
+ <button class="category-btn px-4 py-2 rounded-full bg-gray-200 hover:bg-gray-300" data-category="manufacturing">Fabrication</button>
94
+ </div>
95
+
96
+ <!-- Product Grid -->
97
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
98
+ <!-- Product 1 -->
99
+ <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="construction">
100
+ <div class="relative overflow-hidden h-60">
101
+ <img src="https://images.unsplash.com/photo-1596464716127-f2a82984de30?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
102
+ alt="Bétonnière professionnelle"
103
+ class="w-full h-full object-cover">
104
+ <span class="absolute top-4 left-4 bg-yellow-400 text-yellow-900 px-2 py-1 rounded text-xs font-bold">BESTSELLER</span>
105
+ </div>
106
+ <div class="p-6">
107
+ <h3 class="text-xl font-semibold mb-2">Bétonnière ProMaster 350L</h3>
108
+ <p class="text-gray-600 mb-4">Capacité 350L, moteur essence 6.5HP, idéal pour chantiers moyens.</p>
109
+ <div class="flex justify-between items-center">
110
+ <span class="text-xl font-bold text-blue-600">750 000 FCFA</span>
111
+ <button class="add-to-cart-btn bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg transition"
112
+ data-id="1"
113
+ data-name="Bétonnière ProMaster 350L"
114
+ data-price="750000"
115
+ data-img="https://images.unsplash.com/photo-1596464716127-f2a82984de30?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80">
116
+ Ajouter au panier
117
+ </button>
118
+ </div>
119
+ </div>
120
+ </div>
121
+
122
+ <!-- Product 2 -->
123
+ <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="agriculture">
124
+ <div class="relative overflow-hidden h-60">
125
+ <img src="https://images.unsplash.com/photo-1591498321728-4a8a3314b7f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
126
+ alt="Tracteur agricole"
127
+ class="w-full h-full object-cover">
128
+ </div>
129
+ <div class="p-6">
130
+ <h3 class="text-xl font-semibold mb-2">Tracteur AgriMax 40HP</h3>
131
+ <p class="text-gray-600 mb-4">Tracteur 4x4 avec chariot élévateur, parfait pour les exploitations agricoles.</p>
132
+ <div class="flex justify-between items-center">
133
+ <span class="text-xl font-bold text-blue-600">9 500 000 FCFA</span>
134
+ <button class="add-to-cart-btn bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg transition"
135
+ data-id="2"
136
+ data-name="Tracteur AgriMax 40HP"
137
+ data-price="9500000"
138
+ data-img="https://images.unsplash.com/photo-1591498321728-4a8a3314b7f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80">
139
+ Ajouter au panier
140
+ </button>
141
+ </div>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- Product 3 -->
146
+ <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="manufacturing">
147
+ <div class="relative overflow-hidden h-60">
148
+ <img src="https://images.unsplash.com/photo-1597852074816-d933c7d2b988?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
149
+ alt="Machine CNC"
150
+ class="w-full h-full object-cover">
151
+ <span class="absolute top-4 left-4 bg-green-400 text-green-900 px-2 py-1 rounded text-xs font-bold">NOUVEAU</span>
152
+ </div>
153
+ <div class="p-6">
154
+ <h3 class="text-xl font-semibold mb-2">Fraiseuse CNC MasterCut</h3>
155
+ <p class="text-gray-600 mb-4">Précision industrielle, zone de travail 1300x2500mm, contrôle numérique.</p>
156
+ <div class="flex justify-between items-center">
157
+ <span class="text-xl font-bold text-blue-600">12 000 000 FCFA</span>
158
+ <button class="add-to-cart-btn bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg transition"
159
+ data-id="3"
160
+ data-name="Fraiseuse CNC MasterCut"
161
+ data-price="12000000"
162
+ data-img="https://images.unsplash.com/photo-1597852074816-d933c7d2b988?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80">
163
+ Ajouter au panier
164
+ </button>
165
+ </div>
166
+ </div>
167
+ </div>
168
+
169
+ <!-- Product 4 -->
170
+ <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="construction">
171
+ <div class="relative overflow-hidden h-60">
172
+ <img src="https://images.unsplash.com/photo-1599059813005-11265d5240b5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1284&q=80"
173
+ alt="Compresseur d'air"
174
+ class="w-full h-full object-cover">
175
+ </div>
176
+ <div class="p-6">
177
+ <h3 class="text-xl font-semibold mb-2">Compresseur AirPro 100L</h3>
178
+ <p class="text-gray-600 mb-4">2.2kW, 8 bars max, réservoir 100L, idéal pour outils pneumatiques.</p>
179
+ <div class="flex justify-between items-center">
180
+ <span class="text-xl font-bold text-blue-600">850 000 FCFA</span>
181
+ <button class="add-to-cart-btn bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg transition"
182
+ data-id="4"
183
+ data-name="Compresseur AirPro 100L"
184
+ data-price="850000"
185
+ data-img="https://images.unsplash.com/photo-1599059813005-11265d5240b5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1284&q=80">
186
+ Ajouter au panier
187
+ </button>
188
+ </div>
189
+ </div>
190
+ </div>
191
+
192
+ <!-- Product 5 -->
193
+ <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="agriculture">
194
+ <div class="relative overflow-hidden h-60">
195
+ <img src="https://images.unsplash.com/photo-1620641788421-7a1c342ea42e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1287&q=80"
196
+ alt="Moissonneuse-batteuse"
197
+ class="w-full h-full object-cover">
198
+ </div>
199
+ <div class="p-6">
200
+ <h3 class="text-xl font-semibold mb-2">Moissonneuse AgriHarvest</h3>
201
+ <p class="text-gray-600 mb-4">Largeur de coupe 4m, réservoir 3.5T, moteur diesel 120HP.</p>
202
+ <div class="flex justify-between items-center">
203
+ <span class="text-xl font-bold text-blue-600">25 000 000 FCFA</span>
204
+ <button class="add-to-cart-btn bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg transition"
205
+ data-id="5"
206
+ data-name="Moissonneuse AgriHarvest"
207
+ data-price="25000000"
208
+ data-img="https://images.unsplash.com/photo-1620641788421-7a1c342ea42e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1287&q=80">
209
+ Ajouter au panier
210
+ </button>
211
+ </div>
212
+ </div>
213
+ </div>
214
+
215
+ <!-- Product 6 -->
216
+ <div class="product-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-category="manufacturing">
217
+ <div class="relative overflow-hidden h-60">
218
+ <img src="https://images.unsplash.com/photo-1581094271901-8022df4466f9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1287&q=80"
219
+ alt="Tour à métaux"
220
+ class="w-full h-full object-cover">
221
+ <span class="absolute top-4 left-4 bg-red-400 text-red-900 px-2 py-1 rounded text-xs font-bold">PROMO</span>
222
+ </div>
223
+ <div class="p-6">
224
+ <h3 class="text-xl font-semibold mb-2">Tour MétalMax 800mm</h3>
225
+ <p class="text-gray-600 mb-4">Distance entre pointes 800mm, diamètre 400mm, variateur électronique.</p>
226
+ <div class="flex justify-between items-center">
227
+ <div>
228
+ <span class="text-xl font-bold text-blue-600">3 500 000 FCFA</span>
229
+ <span class="text-sm line-through text-gray-500 ml-2">4 200 000 FCFA</span>
230
+ </div>
231
+ <button class="add-to-cart-btn bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg transition"
232
+ data-id="6"
233
+ data-name="Tour MétalMax 800mm"
234
+ data-price="3500000"
235
+ data-img="https://images.unsplash.com/photo-1581094271901-8022df4466f9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1287&q=80">
236
+ Ajouter au panier
237
+ </button>
238
+ </div>
239
+ </div>
240
+ </div>
241
+ </div>
242
+ </div>
243
+ </section>
244
+
245
+ <!-- About Section -->
246
+ <section id="about" class="py-16 bg-gray-50">
247
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
248
+ <div class="md:flex items-center">
249
+ <div class="md:w-1/2 mb-10 md:mb-0">
250
+ <h2 class="text-3xl font-bold mb-6">PowerTools - Expertise depuis 15 ans</h2>
251
+ <p class="text-gray-700 mb-6">Fondée en 2008, PowerTools fournit des machines industrielles de haute qualité à des milliers de professionnels à travers l'Afrique de l'Ouest.</p>
252
+ <p class="text-gray-700 mb-6">Notre engagement envers la qualité, le service après-vente et les prix compétitifs nous a permis de devenir un leader dans notre secteur.</p>
253
+ <div class="flex space-x-6">
254
+ <div class="text-center">
255
+ <span class="text-4xl font-bold text-blue-600 block">15+</span>
256
+ <span class="text-gray-600">Années d'expérience</span>
257
+ </div>
258
+ <div class="text-center">
259
+ <span class="text-4xl font-bold text-blue-600 block">12K+</span>
260
+ <span class="text-gray-600">Clients satisfaits</span>
261
+ </div>
262
+ <div class="text-center">
263
+ <span class="text-4xl font-bold text-blue-600 block">24/7</span>
264
+ <span class="text-gray-600">Support technique</span>
265
+ </div>
266
+ </div>
267
+ </div>
268
+ <div class="md:w-1/2 flex justify-center">
269
+ <img src="https://images.unsplash.com/photo-1581093458178-fb23f82f633f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1287&q=80"
270
+ alt="Notre entrepôt"
271
+ class="rounded-lg shadow-lg max-w-full h-auto">
272
+ </div>
273
+ </div>
274
+ </div>
275
+ </section>
276
+
277
+ <!-- Testimonials Section -->
278
+ <section class="py-16 bg-white">
279
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
280
+ <h2 class="text-3xl font-bold text-center mb-12">Nos Clients Parlent</h2>
281
+
282
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
283
+ <!-- Testimonial 1 -->
284
+ <div class="bg-gray-50 rounded-lg p-6 shadow-sm">
285
+ <div class="flex items-center mb-4">
286
+ <img src="https://randomuser.me/api/portraits/men/32.jpg"
287
+ alt="Jean Koffi"
288
+ class="w-12 h-12 rounded-full object-cover mr-4">
289
+ <div>
290
+ <h4 class="font-semibold">Jean Koffi</h4>
291
+ <span class="text-gray-600 text-sm">Entrepreneur BTP, Abidjan</span>
292
+ </div>
293
+ </div>
294
+ <p class="text-gray-700 italic">"La bétonnière ProMaster m'a permis de doubler ma productivité sur les chantiers. Le service après-vente est également réactif."</p>
295
+ <div class="mt-3 flex text-yellow-400">
296
+ <i class="fas fa-star"></i>
297
+ <i class="fas fa-star"></i>
298
+ <i class="fas fa-star"></i>
299
+ <i class="fas fa-star"></i>
300
+ <i class="fas fa-star"></i>
301
+ </div>
302
+ </div>
303
+
304
+ <!-- Testimonial 2 -->
305
+ <div class="bg-gray-50 rounded-lg p-6 shadow-sm">
306
+ <div class="flex items-center mb-4">
307
+ <img src="https://randomuser.me/api/portraits/women/44.jpg"
308
+ alt="Amina Diallo"
309
+ class="w-12 h-12 rounded-full object-cover mr-4">
310
+ <div>
311
+ <h4 class="font-semibold">Amina Diallo</h4>
312
+ <span class="text-gray-600 text-sm">Agricultrice, Bamako</span>
313
+ </div>
314
+ </div>
315
+ <p class="text-gray-700 italic">"Le tracteur AgriMax a révolutionné notre exploitation. Puissant et fiable, je recommande PowerTools à tous les agriculteurs."</p>
316
+ <div class="mt-3 flex text-yellow-400">
317
+ <i class="fas fa-star"></i>
318
+ <i class="fas fa-star"></i>
319
+ <i class="fas fa-star"></i>
320
+ <i class="fas fa-star"></i>
321
+ <i class="fas fa-star-half-alt"></i>
322
+ </div>
323
+ </div>
324
+
325
+ <!-- Testimonial 3 -->
326
+ <div class="bg-gray-50 rounded-lg p-6 shadow-sm">
327
+ <div class="flex items-center mb-4">
328
+ <img src="https://randomuser.me/api/portraits/men/75.jpg"
329
+ alt="Thomas Gbato"
330
+ class="w-12 h-12 rounded-full object-cover mr-4">
331
+ <div>
332
+ <h4 class="font-semibold">Thomas Gbato</h4>
333
+ <span class="text-gray-600 text-sm">Atelier métallurgie, Lomé</span>
334
+ </div>
335
+ </div>
336
+ <p class="text-gray-700 italic">"La fraiseuse CNC MasterCut est d'une précision remarquable. Formation incluse et délai de livraison respecté."</p>
337
+ <div class="mt-3 flex text-yellow-400">
338
+ <i class="fas fa-star"></i>
339
+ <i class="fas fa-star"></i>
340
+ <i class="fas fa-star"></i>
341
+ <i class="fas fa-star"></i>
342
+ <i class="fas fa-star"></i>
343
+ </div>
344
+ </div>
345
+ </div>
346
+ </div>
347
+ </section>
348
+
349
+ <!-- Contact Section -->
350
+ <section id="contact" class="py-16 bg-gray-50">
351
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
352
+ <h2 class="text-3xl font-bold text-center mb-12">Contactez-nous</h2>
353
+
354
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
355
+ <!-- Contact Info -->
356
+ <div>
357
+ <h3 class="text-xl font-semibold mb-4">Nos Coordonnées</h3>
358
+ <div class="space-y-4">
359
+ <div class="flex items-start">
360
+ <i class="fas fa-map-marker-alt text-blue-600 mt-1 mr-3"></i>
361
+ <div>
362
+ <h4 class="font-medium">Adresse</h4>
363
+ <p class="text-gray-600">Rue du Commerce, Immeuble Diamond<br>Plateau, Abidjan, Côte d'Ivoire</p>
364
+ </div>
365
+ </div>
366
+ <div class="flex items-start">
367
+ <i class="fas fa-phone-alt text-blue-600 mt-1 mr-3"></i>
368
+ <div>
369
+ <h4 class="font-medium">Téléphone</h4>
370
+ <p class="text-gray-600">+225 20 21 22 23 24<br>+225 07 08 09 10 11</p>
371
+ </div>
372
+ </div>
373
+ <div class="flex items-start">
374
+ <i class="fas fa-envelope text-blue-600 mt-1 mr-3"></i>
375
+ <div>
376
+ <h4 class="font-medium">Email</h4>
377
+ <p class="text-gray-600">contact@powertools.ci<br>ventes@powertools.ci</p>
378
+ </div>
379
+ </div>
380
+ <div class="flex items-start">
381
+ <i class="fas fa-clock text-blue-600 mt-1 mr-3"></i>
382
+ <div>
383
+ <h4 class="font-medium">Horaires</h4>
384
+ <p class="text-gray-600">Lundi-Vendredi: 8h-18h<br>Samedi: 9h-13h</p>
385
+ </div>
386
+ </div>
387
+ </div>
388
+
389
+ <div class="mt-8">
390
+ <h3 class="text-xl font-semibold mb-4">Suivez-nous</h3>
391
+ <div class="flex space-x-4">
392
+ <a href="#" class="w-10 h-10 bg-blue-600 text-white rounded-full flex items-center justify-center hover:bg-blue-700 transition">
393
+ <i class="fab fa-facebook-f"></i>
394
+ </a>
395
+ <a href="#" class="w-10 h-10 bg-blue-400 text-white rounded-full flex items-center justify-center hover:bg-blue-500 transition">
396
+ <i class="fab fa-twitter"></i>
397
+ </a>
398
+ <a href="#" class="w-10 h-10 bg-pink-600 text-white rounded-full flex items-center justify-center hover:bg-pink-700 transition">
399
+ <i class="fab fa-instagram"></i>
400
+ </a>
401
+ <a href="#" class="w-10 h-10 bg-blue-800 text-white rounded-full flex items-center justify-center hover:bg-blue-900 transition">
402
+ <i class="fab fa-linkedin-in"></i>
403
+ </a>
404
+ </div>
405
+ </div>
406
+ </div>
407
+
408
+ <!-- Contact Form -->
409
+ <div>
410
+ <h3 class="text-xl font-semibold mb-4">Envoyez-nous un message</h3>
411
+ <form id="contact-form" class="space-y-4">
412
+ <div>
413
+ <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Nom complet</label>
414
+ <input type="text" id="name" name="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500">
415
+ </div>
416
+ <div>
417
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
418
+ <input type="email" id="email" name="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500">
419
+ </div>
420
+ <div>
421
+ <label for="phone" class="block text-sm font-medium text-gray-700 mb-1">Téléphone</label>
422
+ <input type="tel" id="phone" name="phone" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500">
423
+ </div>
424
+ <div>
425
+ <label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Sujet</label>
426
+ <select id="subject" name="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500">
427
+ <option value="">Sélectionnez un sujet</option>
428
+ <option value="demande-info">Demande d'information</option>
429
+ <option value="devis">Demande de devis</option>
430
+ <option value="apres-vente">Service après-vente</option>
431
+ <option value="autre">Autre</option>
432
+ </select>
433
+ </div>
434
+ <div>
435
+ <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
436
+ <textarea id="message" name="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500"></textarea>
437
+ </div>
438
+ <button type="submit" class="bg-blue-600 text-white px-6 py-3 rounded-lg hover:bg-blue-700 transition">Envoyer le message</button>
439
+ </form>
440
+ </div>
441
+ </div>
442
+ </div>
443
+ </section>
444
+
445
+ <!-- Footer -->
446
+ <footer class="bg-gray-900 text-white py-8">
447
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
448
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
449
+ <div>
450
+ <h3 class="text-lg font-semibold mb-4">PowerTools</h3>
451
+ <p class="text-gray-400">Votre fournisseur de machines professionnelles depuis 2008. Qualité, fiabilité et service client au cœur de notre engagement.</p>
452
+ </div>
453
+ <div>
454
+ <h3 class="text-lg font-semibold mb-4">Liens rapides</h3>
455
+ <ul class="space-y-2">
456
+ <li><a href="#products" class="text-gray-400 hover:text-white transition">Nos machines</a></li>
457
+ <li><a href="#about" class="text-gray-400 hover:text-white transition">À propos</a></li>
458
+ <li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li>
459
+ <li><a href="#" class="text-gray-400 hover:text-white transition">CGV</a></li>
460
+ </ul>
461
+ </div>
462
+ <div>
463
+ <h3 class="text-lg font-semibold mb-4">Services</h3>
464
+ <ul class="space-y-2">
465
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Livraison</a></li>
466
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Installation</a></li>
467
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Formation</a></li>
468
+ <li><a href="#" class="text-gray-400 hover:text-white transition">SAV</a></li>
469
+ </ul>
470
+ </div>
471
+ <div>
472
+ <h3 class="text-lg font-semibold mb-4">Newsletter</h3>
473
+ <p class="text-gray-400 mb-4">Inscrivez-vous pour recevoir nos dernières offres et actualités.</p>
474
+ <form class="flex">
475
+ <input type="email" placeholder="Votre email" class="px-4 py-2 rounded-l-lg text-gray-900 w-full">
476
+ <button type="submit" class="bg-blue-600 px-4 py-2 rounded-r-lg hover:bg-blue-700 transition">
477
+ <i class="fas fa-paper-plane"></i>
478
+ </button>
479
+ </form>
480
+ </div>
481
+ </div>
482
+ <div class="border-t border-gray-800 mt-8 pt-6 flex flex-col md:flex-row justify-between items-center">
483
+ <p class="text-gray-400 text-sm">© 2023 PowerTools. Tous droits réservés.</p>
484
+ <div class="flex space-x-6 mt-4 md:mt-0">
485
+ <img src="https://www.mobilemoneyapi.io/img/logo/mtn.png" alt="MTN Money" class="h-8">
486
+ <img src="https://upload.wikimedia.org/wikipedia/fr/thumb/c/cd/Logo_Visa.svg/1280px-Logo_Visa.svg.png" alt="Visa" class="h-8">
487
+ </div>
488
+ </div>
489
+ </div>
490
+ </footer>
491
+
492
+ <!-- Shopping Cart Sidebar -->
493
+ <div id="cart-sidebar" class="fixed top-0 right-0 w-full md:w-1/2 lg:w-1/3 bg-white h-full shadow-2xl transform translate-x-full transition-transform duration-300 ease-in-out z-50 overflow-y-auto">
494
+ <div class="p-6">
495
+ <div class="flex justify-between items-center mb-6">
496
+ <h3 class="text-2xl font-bold">Votre Panier</h3>
497
+ <button id="close-cart" class="text-gray-500 hover:text-gray-700">
498
+ <i class="fas fa-times text-2xl"></i>
499
+ </button>
500
+ </div>
501
+
502
+ <div id="cart-items" class="space-y-4">
503
+ <!-- Cart items will be dynamically inserted here -->
504
+ <div class="text-center py-10 text-gray-500">
505
+ <i class="fas fa-shopping-cart text-5xl mbThese results seem useful. But they are in html. Can you provide results in Python?
506
+ <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=frondoc/machine" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
507
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Crée moi une boutique de vente de machine qui pourrait être fonctionne et personnalisé avec un lien de paiement MTN money