yuppythaking commited on
Commit
2f243ee
·
verified ·
1 Parent(s): 2f0dd41

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +337 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Creations
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: creations
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: red
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,337 @@
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="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Tazzy The Nail Tech</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
+ @keyframes float {
11
+ 0%, 100% {
12
+ transform: translateY(0);
13
+ }
14
+ 50% {
15
+ transform: translateY(-20px);
16
+ }
17
+ }
18
+
19
+ @keyframes spin {
20
+ 0% {
21
+ transform: rotate(0deg);
22
+ }
23
+ 100% {
24
+ transform: rotate(360deg);
25
+ }
26
+ }
27
+
28
+ @keyframes drip {
29
+ 0% {
30
+ transform: translateY(0);
31
+ opacity: 1;
32
+ }
33
+ 100% {
34
+ transform: translateY(100px);
35
+ opacity: 0;
36
+ }
37
+ }
38
+
39
+ .float {
40
+ animation: float 4s ease-in-out infinite;
41
+ }
42
+
43
+ .spin {
44
+ animation: spin 8s linear infinite;
45
+ }
46
+
47
+ .drip {
48
+ position: absolute;
49
+ animation: drip 2s linear forwards;
50
+ }
51
+
52
+ .nail-polish {
53
+ width: 30px;
54
+ height: 50px;
55
+ border-radius: 50% 50% 10% 10%;
56
+ position: absolute;
57
+ }
58
+
59
+ .nail {
60
+ width: 20px;
61
+ height: 30px;
62
+ background: linear-gradient(to bottom, #FFF5EE, #FFE4E1);
63
+ border-radius: 50% 50% 0 0;
64
+ position: absolute;
65
+ transform: rotate(45deg);
66
+ box-shadow: 0 0 5px rgba(0,0,0,0.2);
67
+ }
68
+
69
+ .glitter {
70
+ position: absolute;
71
+ width: 3px;
72
+ height: 3px;
73
+ background-color: white;
74
+ border-radius: 50%;
75
+ opacity: 0.8;
76
+ }
77
+
78
+ .hand {
79
+ position: absolute;
80
+ width: 100px;
81
+ height: 100px;
82
+ }
83
+
84
+ .finger {
85
+ position: absolute;
86
+ width: 20px;
87
+ height: 60px;
88
+ background: #FFD1DC;
89
+ border-radius: 10px;
90
+ }
91
+ </style>
92
+ </head>
93
+ <body class="bg-black text-pink-500 min-h-screen overflow-hidden">
94
+ <div class="absolute inset-0 overflow-hidden">
95
+ <!-- Background elements -->
96
+ <div class="absolute top-1/4 left-1/4 w-20 h-20 rounded-full bg-pink-900 opacity-20 blur-xl"></div>
97
+ <div class="absolute top-1/3 right-1/3 w-32 h-32 rounded-full bg-pink-800 opacity-20 blur-xl"></div>
98
+ <div class="absolute bottom-1/4 right-1/4 w-24 h-24 rounded-full bg-pink-700 opacity-20 blur-xl"></div>
99
+
100
+ <!-- Glitter particles -->
101
+ <div id="glitter-container"></div>
102
+
103
+ <!-- Nail polish bottles -->
104
+ <div class="absolute top-20 left-20 w-16 h-24 bg-gradient-to-b from-pink-500 to-pink-700 rounded-lg float" style="animation-delay: 0.2s;">
105
+ <div class="absolute top-0 left-1/2 transform -translate-x-1/2 w-4 h-6 bg-pink-300 rounded-t-lg"></div>
106
+ </div>
107
+
108
+ <div class="absolute top-40 right-40 w-16 h-24 bg-gradient-to-b from-black to-pink-900 rounded-lg float" style="animation-delay: 0.5s;">
109
+ <div class="absolute top-0 left-1/2 transform -translate-x-1/2 w-4 h-6 bg-pink-200 rounded-t-lg"></div>
110
+ </div>
111
+
112
+ <div class="absolute bottom-20 left-40 w-16 h-24 bg-gradient-to-b from-pink-600 to-pink-800 rounded-lg float" style="animation-delay: 0.8s;">
113
+ <div class="absolute top-0 left-1/2 transform -translate-x-1/2 w-4 h-6 bg-pink-100 rounded-t-lg"></div>
114
+ </div>
115
+
116
+ <div class="absolute bottom-40 right-20 w-16 h-24 bg-gradient-to-b from-pink-700 to-pink-900 rounded-lg float" style="animation-delay: 1.1s;">
117
+ <div class="absolute top-0 left-1/2 transform -translate-x-1/2 w-4 h-6 bg-pink-300 rounded-t-lg"></div>
118
+ </div>
119
+
120
+ <!-- Nail polish drips -->
121
+ <div id="drip-container"></div>
122
+
123
+ <!-- Nails -->
124
+ <div id="nail-container"></div>
125
+
126
+ <!-- Hands with nails -->
127
+ <div class="hand top-1/4 left-1/3 transform -rotate-12">
128
+ <div class="finger top-0 left-0"></div>
129
+ <div class="finger top-0 left-8"></div>
130
+ <div class="finger top-0 left-16"></div>
131
+ <div class="finger top-0 left-24"></div>
132
+ <div class="finger top-0 left-32"></div>
133
+ </div>
134
+
135
+ <div class="hand bottom-1/4 right-1/3 transform rotate-12">
136
+ <div class="finger top-0 left-0"></div>
137
+ <div class="finger top-0 left-8"></div>
138
+ <div class="finger top-0 left-16"></div>
139
+ <div class="finger top-0 left-24"></div>
140
+ <div class="finger top-0 left-32"></div>
141
+ </div>
142
+ </div>
143
+
144
+ <div class="relative z-10 min-h-screen flex flex-col items-center justify-center p-8">
145
+ <h1 class="text-6xl md:text-8xl font-bold mb-6 text-transparent bg-clip-text bg-gradient-to-r from-pink-400 to-pink-600">
146
+ Tazzy The Nail Tech
147
+ </h1>
148
+
149
+ <p class="text-xl md:text-2xl text-pink-300 mb-8 max-w-2xl text-center">
150
+ Creating stunning nail art that makes you feel fabulous!
151
+ </p>
152
+
153
+ <div class="flex space-x-6">
154
+ <button class="bg-pink-600 hover:bg-pink-700 text-white font-bold py-3 px-6 rounded-full transition-all transform hover:scale-105">
155
+ Book Now
156
+ </button>
157
+ <button class="bg-transparent border-2 border-pink-600 hover:bg-pink-900 text-pink-300 font-bold py-3 px-6 rounded-full transition-all transform hover:scale-105">
158
+ Gallery
159
+ </button>
160
+ </div>
161
+
162
+ <div class="mt-12 flex space-x-4">
163
+ <a href="#" class="text-pink-400 hover:text-pink-300 text-2xl">
164
+ <i class="fab fa-instagram"></i>
165
+ </a>
166
+ <a href="#" class="text-pink-400 hover:text-pink-300 text-2xl">
167
+ <i class="fab fa-tiktok"></i>
168
+ </a>
169
+ <a href="#" class="text-pink-400 hover:text-pink-300 text-2xl">
170
+ <i class="fab fa-facebook"></i>
171
+ </a>
172
+ </div>
173
+ </div>
174
+
175
+ <script>
176
+ // Create glitter particles
177
+ function createGlitter() {
178
+ const container = document.getElementById('glitter-container');
179
+ const glitter = document.createElement('div');
180
+ glitter.className = 'glitter';
181
+
182
+ // Random position
183
+ const x = Math.random() * window.innerWidth;
184
+ const y = Math.random() * window.innerHeight;
185
+
186
+ // Random size
187
+ const size = Math.random() * 4 + 1;
188
+
189
+ glitter.style.left = `${x}px`;
190
+ glitter.style.top = `${y}px`;
191
+ glitter.style.width = `${size}px`;
192
+ glitter.style.height = `${size}px`;
193
+ glitter.style.opacity = Math.random() * 0.8 + 0.2;
194
+
195
+ // Random animation
196
+ glitter.style.animation = `float ${Math.random() * 3 + 2}s ease-in-out infinite`;
197
+ glitter.style.animationDelay = `${Math.random() * 2}s`;
198
+
199
+ container.appendChild(glitter);
200
+
201
+ // Remove after animation
202
+ setTimeout(() => {
203
+ glitter.remove();
204
+ }, 5000);
205
+ }
206
+
207
+ // Create nail polish drips
208
+ function createDrip() {
209
+ const container = document.getElementById('drip-container');
210
+ const drip = document.createElement('div');
211
+ drip.className = 'drip';
212
+
213
+ // Random position at top
214
+ const x = Math.random() * window.innerWidth;
215
+
216
+ // Random color
217
+ const colors = ['#FF69B4', '#FF1493', '#DB7093', '#C71585', '#FFC0CB'];
218
+ const color = colors[Math.floor(Math.random() * colors.length)];
219
+
220
+ // Random width
221
+ const width = Math.random() * 10 + 5;
222
+
223
+ drip.style.left = `${x}px`;
224
+ drip.style.top = '-20px';
225
+ drip.style.width = `${width}px`;
226
+ drip.style.height = `${Math.random() * 30 + 20}px`;
227
+ drip.style.backgroundColor = color;
228
+ drip.style.borderRadius = '0 0 10px 10px';
229
+
230
+ container.appendChild(drip);
231
+
232
+ // Remove after animation
233
+ setTimeout(() => {
234
+ drip.remove();
235
+ }, 2000);
236
+ }
237
+
238
+ // Create floating nails
239
+ function createNail() {
240
+ const container = document.getElementById('nail-container');
241
+ const nail = document.createElement('div');
242
+ nail.className = 'nail float';
243
+
244
+ // Random position
245
+ const x = Math.random() * window.innerWidth;
246
+ const y = Math.random() * window.innerHeight;
247
+
248
+ // Random rotation
249
+ const rotation = Math.random() * 360;
250
+
251
+ // Random color
252
+ const colors = ['#FF69B4', '#FF1493', '#DB7093', '#C71585', '#FFC0CB', '#000000'];
253
+ const color = colors[Math.floor(Math.random() * colors.length)];
254
+
255
+ nail.style.left = `${x}px`;
256
+ nail.style.top = `${y}px`;
257
+ nail.style.transform = `rotate(${rotation}deg)`;
258
+
259
+ // Create polish on nail
260
+ const polish = document.createElement('div');
261
+ polish.className = 'absolute inset-0 rounded-t-full';
262
+ polish.style.backgroundColor = color;
263
+ polish.style.opacity = '0.8';
264
+
265
+ // Add some french tip style
266
+ if (Math.random() > 0.5) {
267
+ const tip = document.createElement('div');
268
+ tip.className = 'absolute bottom-0 left-0 right-0 h-1/4 rounded-t-full';
269
+ tip.style.backgroundColor = 'white';
270
+ polish.appendChild(tip);
271
+ }
272
+
273
+ nail.appendChild(polish);
274
+ container.appendChild(nail);
275
+
276
+ // Remove after some time
277
+ setTimeout(() => {
278
+ nail.remove();
279
+ }, 10000);
280
+ }
281
+
282
+ // Initialize animations
283
+ function initAnimations() {
284
+ // Create initial elements
285
+ for (let i = 0; i < 50; i++) {
286
+ createGlitter();
287
+ if (i % 5 === 0) createNail();
288
+ }
289
+
290
+ // Set intervals for continuous creation
291
+ setInterval(createGlitter, 300);
292
+ setInterval(createDrip, 500);
293
+ setInterval(createNail, 2000);
294
+
295
+ // Add some polish to the hands
296
+ setTimeout(() => {
297
+ const hands = document.querySelectorAll('.hand');
298
+ hands.forEach(hand => {
299
+ const fingers = hand.querySelectorAll('.finger');
300
+ fingers.forEach(finger => {
301
+ const polish = document.createElement('div');
302
+ polish.className = 'absolute top-0 left-0 right-0 h-full rounded-t-full';
303
+
304
+ // Random polish style
305
+ if (Math.random() > 0.7) {
306
+ // Gradient polish
307
+ polish.style.background = `linear-gradient(to bottom, ${['#FF69B4', '#FF1493', '#DB7093'][Math.floor(Math.random() * 3)]}, ${['#000000', '#C71585', '#FFC0CB'][Math.floor(Math.random() * 3)]})`;
308
+ } else if (Math.random() > 0.5) {
309
+ // Solid color with french tip
310
+ polish.style.backgroundColor = ['#FF69B4', '#FF1493', '#DB7093', '#C71585', '#FFC0CB'][Math.floor(Math.random() * 5)];
311
+ const tip = document.createElement('div');
312
+ tip.className = 'absolute bottom-0 left-0 right-0 h-1/4 rounded-t-full';
313
+ tip.style.backgroundColor = 'white';
314
+ polish.appendChild(tip);
315
+ } else {
316
+ // Glitter polish
317
+ polish.style.backgroundColor = ['#FF69B4', '#FF1493', '#DB7093'][Math.floor(Math.random() * 3)];
318
+ for (let i = 0; i < 5; i++) {
319
+ const glitter = document.createElement('div');
320
+ glitter.className = 'absolute w-1 h-1 rounded-full bg-white';
321
+ glitter.style.left = `${Math.random() * 100}%`;
322
+ glitter.style.top = `${Math.random() * 100}%`;
323
+ polish.appendChild(glitter);
324
+ }
325
+ }
326
+
327
+ finger.appendChild(polish);
328
+ });
329
+ });
330
+ }, 1000);
331
+ }
332
+
333
+ // Start animations when page loads
334
+ window.addEventListener('load', initAnimations);
335
+ </script>
336
+ <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=yuppythaking/creations" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
337
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ create a stylized pink and black webpage with the word "Tazzy The Nail Tech" can we give it nails and polish animated on the screen