widson commited on
Commit
b9d2d98
·
verified ·
1 Parent(s): 76e5462

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +186 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Shoes509
3
- emoji: 👁
4
- colorFrom: gray
5
- colorTo: purple
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: shoes509
3
+ emoji: 🐳
4
+ colorFrom: pink
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,186 @@
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>Explora Nuestras Colecciones de Tenis</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
+ .sneaker-3d {
11
+ transform-style: preserve-3d;
12
+ transition: transform 0.5s ease;
13
+ }
14
+ .collection-card {
15
+ transition: all 0.3s ease;
16
+ transform-style: preserve-3d;
17
+ }
18
+ .collection-card:hover {
19
+ transform: translateY(-8px) rotateX(5deg);
20
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
21
+ }
22
+ .collection-card::before {
23
+ content: '';
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ right: 0;
28
+ height: 4px;
29
+ background: linear-gradient(90deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
30
+ opacity: 0;
31
+ transition: opacity 0.3s ease;
32
+ }
33
+ .collection-card:hover::before {
34
+ opacity: 1;
35
+ }
36
+ @keyframes float {
37
+ 0%, 100% { transform: translateY(0) rotateY(0deg); }
38
+ 50% { transform: translateY(-20px) rotateY(10deg); }
39
+ }
40
+ .floating {
41
+ animation: float 6s ease-in-out infinite;
42
+ }
43
+ </style>
44
+ </head>
45
+ <body class="bg-gradient-to-r from-white to-green-100 min-h-screen">
46
+ <div class="container mx-auto px-4 py-16">
47
+ <div class="text-center mb-16">
48
+ <h1 class="text-4xl md:text-5xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-purple-600 via-pink-500 to-blue-500">
49
+ Explora Nuestras Colecciones
50
+ </h1>
51
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">
52
+ Descubre los tenis más exclusivos para cada estilo de vida
53
+ </p>
54
+ </div>
55
+
56
+ <!-- 3D Sneaker -->
57
+ <div class="flex justify-center mb-16">
58
+ <div class="sneaker-3d relative w-64 h-64 floating cursor-pointer" id="sneaker3d">
59
+ <img src="https://static.nike.com/a/images/t_PDP_1280_v1/f_auto,q_auto:eco/skwgyqrbfzhu6uyeh0gg/air-force-1-07-mens-shoes-jBrhbr.png"
60
+ alt="Nike Air Force 1"
61
+ class="w-full h-full object-contain"
62
+ id="sneakerImage">
63
+ <div class="absolute inset-0 bg-gradient-to-b from-transparent via-transparent to-white opacity-20"></div>
64
+ </div>
65
+ </div>
66
+
67
+ <!-- Collections Grid -->
68
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-16">
69
+ <div class="collection-card bg-white rounded-xl shadow-md p-6 relative overflow-hidden"
70
+ data-sneaker="https://static.nike.com/a/images/t_PDP_1280_v1/f_auto,q_auto:eco/skwgyqrbfzhu6uyeh0gg/air-force-1-07-mens-shoes-jBrhbr.png">
71
+ <div class="flex items-center mb-4">
72
+ <div class="w-12 h-12 rounded-full bg-gradient-to-r from-blue-500 to-purple-500 flex items-center justify-center text-white mr-4">
73
+ <i class="fas fa-child text-xl"></i>
74
+ </div>
75
+ <h3 class="text-xl font-bold">Niños 👦</h3>
76
+ </div>
77
+ <p class="text-gray-600 mb-4">Zapatos modernos y cómodos para los más pequeños.</p>
78
+ <button class="text-sm font-medium text-black hover:text-blue-600 transition-colors flex items-center">
79
+ Ver colección <i class="fas fa-chevron-right ml-1 text-xs"></i>
80
+ </button>
81
+ </div>
82
+
83
+ <div class="collection-card bg-white rounded-xl shadow-md p-6 relative overflow-hidden"
84
+ data-sneaker="https://static.nike.com/a/images/t_PDP_1280_v1/f_auto,q_auto:eco/af73b01e-8a3b-4a9a-bd7b-48b27a7bdad6/air-jordan-1-mid-se-mens-shoes-5Mp0F1.png">
85
+ <div class="flex items-center mb-4">
86
+ <div class="w-12 h-12 rounded-full bg-gradient-to-r from-pink-500 to-red-500 flex items-center justify-center text-white mr-4">
87
+ <i class="fas fa-female text-xl"></i>
88
+ </div>
89
+ <h3 class="text-xl font-bold">Mujeres 👩</h3>
90
+ </div>
91
+ <p class="text-gray-600 mb-4">Estilo y elegancia para cada paso.</p>
92
+ <button class="text-sm font-medium text-black hover:text-blue-600 transition-colors flex items-center">
93
+ Ver colección <i class="fas fa-chevron-right ml-1 text-xs"></i>
94
+ </button>
95
+ </div>
96
+
97
+ <div class="collection-card bg-white rounded-xl shadow-md p-6 relative overflow-hidden"
98
+ data-sneaker="https://static.nike.com/a/images/t_PDP_1280_v1/f_auto,q_auto:eco/7c9d01c6-2d8e-4c1e-97e3-3055cc0c3a4e/air-jordan-1-retro-high-og-mens-shoes-Pz6fZ9.png">
99
+ <div class="flex items-center mb-4">
100
+ <div class="w-12 h-12 rounded-full bg-gradient-to-r from-green-500 to-blue-500 flex items-center justify-center text-white mr-4">
101
+ <i class="fas fa-male text-xl"></i>
102
+ </div>
103
+ <h3 class="text-xl font-bold">Hombres 👨</h3>
104
+ </div>
105
+ <p class="text-gray-600 mb-4">Tenis originales y resistentes para cada día.</p>
106
+ <button class="text-sm font-medium text-black hover:text-blue-600 transition-colors flex items-center">
107
+ Ver colección <i class="fas fa-chevron-right ml-1 text-xs"></i>
108
+ </button>
109
+ </div>
110
+
111
+ <div class="collection-card bg-white rounded-xl shadow-md p-6 relative overflow-hidden"
112
+ data-sneaker="https://static.nike.com/a/images/t_PDP_1280_v1/f_auto,q_auto:eco/0a7f8b5a-2a0b-4a5e-9b5c-5c5e5d9b5b5b/air-max-270-womens-shoes-PgZVZl.png">
113
+ <div class="flex items-center mb-4">
114
+ <div class="w-12 h-12 rounded-full bg-gradient-to-r from-yellow-500 to-orange-500 flex items-center justify-center text-white mr-4">
115
+ <i class="fas fa-heels text-xl"></i>
116
+ </div>
117
+ <h3 class="text-xl font-bold">Mujeres Adultas 👠</h3>
118
+ </div>
119
+ <p class="text-gray-600 mb-4">Comodidad con clase para mujeres activas.</p>
120
+ <button class="text-sm font-medium text-black hover:text-blue-600 transition-colors flex items-center">
121
+ Ver colección <i class="fas fa-chevron-right ml-1 text-xs"></i>
122
+ </button>
123
+ </div>
124
+ </div>
125
+
126
+ <div class="text-center">
127
+ <button class="explore-btn px-8 py-3 bg-black text-white font-bold rounded-full transition-all duration-300 hover:bg-gray-800 hover:shadow-lg group">
128
+ <span class="group-hover:mr-2 transition-all">Explorar Todo</span>
129
+ <i class="fas fa-arrow-right group-hover:translate-x-1 transition-transform"></i>
130
+ </button>
131
+ </div>
132
+ </div>
133
+
134
+ <script>
135
+ document.addEventListener('DOMContentLoaded', function() {
136
+ const sneaker3d = document.getElementById('sneaker3d');
137
+ const sneakerImage = document.getElementById('sneakerImage');
138
+ const collectionCards = document.querySelectorAll('.collection-card');
139
+
140
+ // 3D rotation effect on mouse move
141
+ sneaker3d.addEventListener('mousemove', (e) => {
142
+ const xAxis = (window.innerWidth / 2 - e.pageX) / 25;
143
+ const yAxis = (window.innerHeight / 2 - e.pageY) / 25;
144
+ sneaker3d.style.transform = `rotateY(${xAxis}deg) rotateX(${yAxis}deg)`;
145
+ });
146
+
147
+ // Reset rotation when mouse leaves
148
+ sneaker3d.addEventListener('mouseleave', () => {
149
+ sneaker3d.style.transform = 'rotateY(0deg) rotateX(0deg)';
150
+ });
151
+
152
+ // Change sneaker image when hovering collection cards
153
+ collectionCards.forEach(card => {
154
+ card.addEventListener('mouseenter', () => {
155
+ const newImage = card.getAttribute('data-sneaker');
156
+ sneakerImage.src = newImage;
157
+
158
+ // Add bounce effect
159
+ sneaker3d.style.animation = 'none';
160
+ sneaker3d.offsetHeight; // Trigger reflow
161
+ sneaker3d.style.animation = 'float 6s ease-in-out infinite';
162
+ });
163
+
164
+ // Click effect for collection cards
165
+ card.addEventListener('click', function() {
166
+ this.style.transform = 'scale(0.95)';
167
+ setTimeout(() => {
168
+ this.style.transform = 'translateY(-8px) rotateX(5deg)';
169
+ alert(`Redirigiendo a la colección: ${this.querySelector('h3').textContent}`);
170
+ }, 200);
171
+ });
172
+ });
173
+
174
+ // Explore button effect
175
+ const exploreBtn = document.querySelector('.explore-btn');
176
+ exploreBtn.addEventListener('click', function() {
177
+ this.innerHTML = '<i class="fas fa-spinner fa-spin mr-2"></i> Cargando...';
178
+ setTimeout(() => {
179
+ alert('Redirigiendo a todas las colecciones!');
180
+ this.innerHTML = '<span class="group-hover:mr-2 transition-all">Explorar Todo</span><i class="fas fa-arrow-right group-hover:translate-x-1 transition-transform"></i>';
181
+ }, 1500);
182
+ });
183
+ });
184
+ </script>
185
+ <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=widson/shoes509" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
186
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <section style="background-color: #fff; color: #000; padding: 60px 20px; font-family: Arial, sans-serif; text-align: center;"> <h2 style="font-size: 32px; font-weight: bold; margin-bottom: 40px;">🔥 Productos Populares</h2> <p style="font-size: 16px; margin-bottom: 40px;"> Descubre los productos más vendidos y con mayor demanda en el mercado actual. <br> Todos verificados y garantizados. </p> <div style="max-width: 800px; margin: 0 auto; text-align: left;"> <ul style="list-style: none; padding: 0; font-size: 18px; line-height: 2;"> <li><strong>🖤 Air Jordan 1 Retro High OG</strong> — El ícono del streetwear. Siempre en tendencia.</li> <li><strong>🖤 Yeezy Boost 350 V2</strong> — Comodidad futurista con estilo inconfundible.</li> <li><strong>🖤 Apple AirPods Pro</strong> — Audio de alta calidad con cancelación de ruido activa.</li> <li><strong>🖤 Supreme Box Logo Tee</strong> — El clásico urbano. Limitado y codiciado.</li> <li><strong>🖤 Rolex Submariner</strong> — Lujo atemporal. Una pieza de inversión.</li> <li><strong>🖤 Pokémon Booster Packs</strong> — Coleccionables sellados. Valor que crece con el tiempo.</li> </ul> </div> <a href="#" style="display: inline-block; margin-top: 40px; padding: 12px 24px; border: 2px solid #000; color: #000; text-decoration: none; font-weight: bold; transition: 0.3s;"> 👉 Explorar Todo </a> </section>
2
+ <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Banner Tenis 3D</title> <style> body { margin: 0; font-family: 'Arial', sans-serif; background: linear-gradient(to right, #ffffff, #c2f0c2); /* Blan ak vèt */ } .banner { padding: 60px 20px; text-align: center; color: #000; } .titulo { font-size: 36px; font-weight: bold; margin-bottom: 20px; } .sneaker { width: 200px; height: 200px; margin: 0 auto 30px; background-image: url('https://upload.wikimedia.org/wikipedia/commons/9/9e/3D_Sneaker_Render.png'); /* Chanje si ou gen pwòp imaj */ background-size: cover; animation: rotateSneaker 6s linear infinite; } @keyframes rotateSneaker { 0% { transform: rotateY(0deg); } 100% { transform: rotateY(360deg); } } .colecciones { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 30px; } .coleccion { border: 2px solid #000; padding: 20px; width: 220px; border-radius: 12px; background-color: #fff; transition: transform 0.3s; } .coleccion:hover { transform: scale(1.05); } .coleccion h3 { margin-top: 0; } </style> </head> <body> <div class="banner"> <div class="titulo">Explora nuestras colecciones</div> <div class="sneaker"></div> <div class="colecciones"> <div class="coleccion"> <h3>Niños 👦</h3> <p>Zapatos modernos y cómodos para los más pequeños.</p> </div> <div class="coleccion"> <h3>Mujeres 👩</h3> <p>Estilo y elegancia para cada paso.</p> </div> <div class="coleccion"> <h3>Hombres 👨</h3> <p>Tenis originales y resistentes para cada día.</p> </div> <div class="coleccion"> <h3>Mujeres Adultas 👠</h3> <p>Comodidad con clase para mujeres activas.</p> </div> </div> </div> </body> </html>