leemonz commited on
Commit
b59c8a6
·
verified ·
1 Parent(s): d84c50d

la empresa se llama Mr Blonde - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +273 -18
  3. prompts.txt +35 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Lista De Precios
3
- emoji: 🚀
4
- colorFrom: gray
5
- colorTo: red
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: lista-de-precios
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: pink
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,274 @@
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="es">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Lista de Precios - Barbería</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <style>
13
+ :root {
14
+ --primary-dark: #1a202c;
15
+ --secondary-gold: #d69e2e;
16
+ --accent-gray: #2d3748;
17
+ --light-text: #f7fafc;
18
+ }
19
+ body {
20
+ font-family: 'Montserrat', sans-serif;
21
+ background-color: var(--primary-dark);
22
+ color: var(--light-text);
23
+ }
24
+ .tab-active {
25
+ border-bottom: 3px solid var(--secondary-gold);
26
+ color: var(--secondary-gold);
27
+ }
28
+ .table-row:nth-child(even) {
29
+ background-color: rgba(255, 255, 255, 0.05);
30
+ }
31
+ .price-highlight {
32
+ color: var(--secondary-gold);
33
+ font-weight: 600;
34
+ }
35
+ </style>
36
+ </head>
37
+ <body class="min-h-screen flex flex-col">
38
+ <!-- Header -->
39
+ <header class="bg-gradient-to-r from-gray-900 to-black py-8 px-4 text-center" data-aos="fade-down">
40
+ <h1 class="text-3xl md:text-4xl font-bold mb-4">Lista de Precios - Mr Blonde</h1>
41
+ <p class="text-lg md:text-xl mb-2">Válida desde 01/09/2025</p>
42
+ <div class="mt-4 p-4 bg-yellow-900 rounded-lg max-w-2xl mx-auto">
43
+ <p class="font-semibold">🎁 Promoción Especial:</p>
44
+ <p>A partir de la compra de 12 unidades de cualquier producto, regalamos la entrega a domicilio en CABA, Rosario y Córdoba Capital. Consultá por otras localidades.</p>
45
+ </div>
46
+ </header>
47
+
48
+ <!-- Tabs Navigation -->
49
+ <nav class="flex justify-center my-6 px-4" data-aos="fade-up">
50
+ <button id="barberias-tab" class="mx-2 px-6 py-3 font-medium tab-active transition-all">Venta a Barberías</button>
51
+ <button id="publico-tab" class="mx-2 px-6 py-3 font-medium transition-all">Venta al Público</button>
52
+ </nav>
53
+
54
+ <!-- Search & Sort Controls -->
55
+ <div class="max-w-6xl mx-auto px-4 mb-6 flex flex-wrap gap-4 justify-between items-center">
56
+ <input type="text" id="search-input" placeholder="Buscar producto..." class="px-4 py-2 rounded bg-gray-800 text-white w-full md:w-1/3">
57
+ <div class="flex space-x-2">
58
+ <button id="sort-asc" class="px-3 py-1 bg-gray-700 rounded hover:bg-gray-600">Precio ↑</button>
59
+ <button id="sort-desc" class="px-3 py-1 bg-gray-700 rounded hover:bg-gray-600">Precio ↓</button>
60
+ </div>
61
+ </div>
62
+
63
+ <!-- Main Content -->
64
+ <main class="flex-grow max-w-6xl mx-auto w-full px-4 pb-12">
65
+ <!-- Venta a Barberías Section -->
66
+ <section id="barberias-section" class="data-section active">
67
+ <div class="overflow-x-auto rounded-lg shadow-lg mb-12" data-aos="fade-up">
68
+ <table class="min-w-full table-auto">
69
+ <thead class="bg-gray-800">
70
+ <tr>
71
+ <th class="py-3 px-4 text-left">Producto</th>
72
+ <th class="py-3 px-4 text-right">Precio Total</th>
73
+ <th class="py-3 px-4 text-center">Bonificación</th>
74
+ </tr>
75
+ </thead>
76
+ <tbody>
77
+ <tr class="table-row">
78
+ <td class="py-3 px-4">Pomada OS 100g</td>
79
+ <td class="py-3 px-4 text-right price-highlight">$10.713,06</td>
80
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
81
+ </tr>
82
+ <tr class="table-row">
83
+ <td class="py-3 px-4">Pocket OS 50g</td>
84
+ <td class="py-3 px-4 text-right price-highlight">$8.073,18</td>
85
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
86
+ </tr>
87
+ <tr class="table-row">
88
+ <td class="py-3 px-4">Pomada Mate 50g</td>
89
+ <td class="py-3 px-4 text-right price-highlight">$10.219,57</td>
90
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
91
+ </tr>
92
+ <tr class="table-row">
93
+ <td class="py-3 px-4">Stardust Polvo Modelador 10cc</td>
94
+ <td class="py-3 px-4 text-right price-highlight">$10.053,80</td>
95
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
96
+ </tr>
97
+ <tr class="table-row">
98
+ <td class="py-3 px-4">Pomada Líquida x 120ml</td>
99
+ <td class="py-3 px-4 text-right price-highlight">$8.302,61</td>
100
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
101
+ </tr>
102
+ <tr class="table-row">
103
+ <td class="py-3 px-4">Shampoo Fortalecedor 2en1 200g</td>
104
+ <td class="py-3 px-4 text-right price-highlight">$10.310,58</td>
105
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
106
+ </tr>
107
+ <tr class="table-row">
108
+ <td class="py-3 px-4">Aceite para Barba 20ml N°1 Azul</td>
109
+ <td class="py-3 px-4 text-right price-highlight">$9.956,17</td>
110
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
111
+ </tr>
112
+ <tr class="table-row">
113
+ <td class="py-3 px-4">Aceite para Barba 20ml N°2 Rojo</td>
114
+ <td class="py-3 px-4 text-right price-highlight">$9.956,17</td>
115
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
116
+ </tr>
117
+ <tr class="table-row">
118
+ <td class="py-3 px-4">Aceite para Barba 20ml N°3 Amarillo</td>
119
+ <td class="py-3 px-4 text-right price-highlight">$9.956,17</td>
120
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
121
+ </tr>
122
+ <tr class="table-row">
123
+ <td class="py-3 px-4">Bálsamo Barba con Romero 30g</td>
124
+ <td class="py-3 px-4 text-right price-highlight">$8.162,96</td>
125
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
126
+ </tr>
127
+ <tr class="table-row">
128
+ <td class="py-3 px-4">After Shave 100g</td>
129
+ <td class="py-3 px-4 text-right price-highlight">$8.480,46</td>
130
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
131
+ </tr>
132
+ <tr class="table-row">
133
+ <td class="py-3 px-4">Válvula Recargable 250g para Gel Mr B</td>
134
+ <td class="py-3 px-4 text-right price-highlight">$1.500,25</td>
135
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
136
+ </tr>
137
+ <tr class="table-row">
138
+ <td class="py-3 px-4">Gel Afeitar Profesional 1080ml</td>
139
+ <td class="py-3 px-4 text-right price-highlight">$14.940,09</td>
140
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
141
+ </tr>
142
+ <tr class="table-row">
143
+ <td class="py-3 px-4">Crema de afeitar x 400g</td>
144
+ <td class="py-3 px-4 text-right price-highlight">$15.735,42</td>
145
+ <td class="py-3 px-4 text-center">6x1 / 8x2</td>
146
+ </tr>
147
+ </tbody>
148
+ </table>
149
+ </div>
150
+
151
+ <!-- Merchandising Subsection -->
152
+ <div class="bg-gray-800 rounded-lg p-6 mt-8" data-aos="fade-up">
153
+ <h2 class="text-2xl font-bold mb-4 text-center">Merchandising</h2>
154
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
155
+ <div class="bg-gray-700 p-4 rounded flex justify-between items-center">
156
+ <span>Capas</span>
157
+ <span class="price-highlight">$14.026</span>
158
+ </div>
159
+ <div class="bg-gray-700 p-4 rounded flex justify-between items-center">
160
+ <span>Cajones Exhibidores Mr. Blonde</span>
161
+ <span class="price-highlight">$34.145</span>
162
+ </div>
163
+ </div>
164
+ </div>
165
+ </section>
166
+
167
+ <!-- Venta al Público Section -->
168
+ <section id="publico-section" class="data-section hidden">
169
+ <div class="overflow-x-auto rounded-lg shadow-lg" data-aos="fade-up">
170
+ <table class="min-w-full table-auto">
171
+ <thead class="bg-gray-800">
172
+ <tr>
173
+ <th class="py-3 px-4 text-left">Producto</th>
174
+ <th class="py-3 px-4 text-right">Precio Total</th>
175
+ </tr>
176
+ </thead>
177
+ <tbody>
178
+ <tr class="table-row">
179
+ <td class="py-3 px-4">Pomada OS 100gr</td>
180
+ <td class="py-3 px-4 text-right price-highlight">$17.730</td>
181
+ </tr>
182
+ <tr class="table-row">
183
+ <td class="py-3 px-4">Pocket 50gr</td>
184
+ <td class="py-3 px-4 text-right price-highlight">$13.400</td>
185
+ </tr>
186
+ <tr class="table-row">
187
+ <td class="py-3 px-4">Pomada Mate 50gr</td>
188
+ <td class="py-3 px-4 text-right price-highlight">$16.860</td>
189
+ </tr>
190
+ <tr class="table-row">
191
+ <td class="py-3 px-4">Stardust Polvo Modelador 10cc</td>
192
+ <td class="py-3 px-4 text-right price-highlight">$16.400</td>
193
+ </tr>
194
+ <tr class="table-row">
195
+ <td class="py-3 px-4">Pomada Líquida x 120ml</td>
196
+ <td class="py-3 px-4 text-right price-highlight">$13.650</td>
197
+ </tr>
198
+ <tr class="table-row">
199
+ <td class="py-3 px-4">Shampoo Fortalecedor 2en1 200g</td>
200
+ <td class="py-3 px-4 text-right price-highlight">$16.700</td>
201
+ </tr>
202
+ <tr class="table-row">
203
+ <td class="py-3 px-4">Aceites para barba 20ml</td>
204
+ <td class="py-3 px-4 text-right price-highlight">$15.930</td>
205
+ </tr>
206
+ <tr class="table-row">
207
+ <td class="py-3 px-4">Bálsamo Barba con Romero 30g</td>
208
+ <td class="py-3 px-4 text-right price-highlight">$13.000</td>
209
+ </tr>
210
+ <tr class="table-row">
211
+ <td class="py-3 px-4">After Shave 100g</td>
212
+ <td class="py-3 px-4 text-right price-highlight">$13.299</td>
213
+ </tr>
214
+ </tbody>
215
+ </table>
216
+ </div>
217
+ </section>
218
+ </main>
219
+
220
+ <!-- Footer -->
221
+ <footer class="bg-black text-center py-6 text-sm">
222
+ <p>¿Tienes consultas? <a href="#" class="text-yellow-500 hover:underline">Contáctanos</a></p>
223
+ <p class="mt-2">© 2025 Mr Blonde. Todos los derechos reservados.</p>
224
+ </footer>
225
+
226
+ <script>
227
+ // Tab Switching
228
+ document.getElementById('barberias-tab').addEventListener('click', () => switchTab('barberias'));
229
+ document.getElementById('publico-tab').addEventListener('click', () => switchTab('publico'));
230
+
231
+ function switchTab(tabName) {
232
+ document.querySelectorAll('.data-section').forEach(section => section.classList.add('hidden'));
233
+ document.getElementById(`${tabName}-section`).classList.remove('hidden');
234
+
235
+ document.querySelectorAll('nav button').forEach(btn => btn.classList.remove('tab-active'));
236
+ document.getElementById(`${tabName}-tab`).classList.add('tab-active');
237
+ }
238
+
239
+ // Search Functionality
240
+ document.getElementById('search-input').addEventListener('input', function() {
241
+ const searchTerm = this.value.toLowerCase();
242
+ document.querySelectorAll('.table-row').forEach(row => {
243
+ const text = row.textContent.toLowerCase();
244
+ row.style.display = text.includes(searchTerm) ? '' : 'none';
245
+ });
246
+ });
247
+
248
+ // Sorting Functionality
249
+ document.getElementById('sort-asc').addEventListener('click', () => sortTable(true));
250
+ document.getElementById('sort-desc').addEventListener('click', () => sortTable(false));
251
+
252
+ function sortTable(ascending) {
253
+ const tbody = document.querySelector('.active tbody');
254
+ const rows = Array.from(tbody.querySelectorAll('.table-row'));
255
+
256
+ rows.sort((a, b) => {
257
+ const aPrice = parseFloat(a.querySelector('.price-highlight').textContent.replace(/[^0-9,]/g, '').replace(',', '.'));
258
+ const bPrice = parseFloat(b.querySelector('.price-highlight').textContent.replace(/[^0-9,]/g, '').replace(',', '.'));
259
+ return ascending ? aPrice - bPrice : bPrice - aPrice;
260
+ });
261
+
262
+ rows.forEach(row => tbody.appendChild(row));
263
+ }
264
+
265
+ // Initialize AOS
266
+ AOS.init({
267
+ duration: 800,
268
+ once: true
269
+ });
270
+
271
+ feather.replace();
272
+ </script>
273
+ </body>
274
  </html>
prompts.txt ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ diseña una lista de precion en html dinamica y hermosa para que vean mis clientes: esta es la informacion de la lista de precios: Lista de precios Barberías desde 01/09/2025
2
+ A partir de la compra de 12 unidades de cualquier producto regalamos la entrega en domicilio
3
+ en CABA, Rosario y Córdoba Capital. Consultá por otras localidades.
4
+ Venta a Barberías
5
+ Producto TOTAL Bonificación
6
+ Pomada OS 100g 10713,06 6x1 / 8x2
7
+ Pocket OS 50g 8073,18 6x1 / 8x2
8
+ Pomada Mate 50g 10219,57 6x1 / 8x2
9
+ Stardust Polvo Modelador 10cc 10053,80 6x1 / 8x2
10
+ Pomada Líquida x 120ml 8302,61 6x1 / 8x2
11
+ Shampoo Fortalecedor 2en1 200g 10310,58 6x1 / 8x2
12
+ Aceite para Barba 20ml N°1 Azul 9956,17 6x1 / 8x2
13
+ Aceite para Barba 20ml N°2 Rojo 9956,17 6x1 / 8x2
14
+ Aceite para Barba 20ml N°3 Amarillo 9956,17 6x1 / 8x2
15
+ Bálsamo Barba con Romero 30g 8162,96 6x1 / 8x2
16
+ After Shave 100g 8480,46 6x1 / 8x2
17
+ Válvula Recargable 250g para Gel Mr B 1500,25 6x1 / 8x2
18
+ Gel Afeitar Profesional 1080ml 14940,09 6x1 / 8x2
19
+ Crema de afeitar x 400g 15735,42 6x1 / 8x2
20
+ Merchandasing Total
21
+ Capas 14026
22
+ Cajones Exhibidores Mr. Blonde 34145
23
+ Venta al público
24
+ Producto TOTAL
25
+ Pomada OS 100gr 17730
26
+ Pocket 50gr 13400
27
+ Pomada Mate 50gr 16860
28
+ Stardust Polvo Modelador 10cc 16400
29
+ Pomada Líquida x 120ml 13650
30
+ Shampoo Fortalecedor 2en1 200g 16700
31
+ Aceites para barba 20ml 15930
32
+ Bálsamo Barba con Romero 30g 13000
33
+ After Shave 100g 13299
34
+ la empresa se llama Mr Blonde
35
+ la empresa se llama Mr Blonde