dsfijdskf commited on
Commit
4911bfc
·
verified ·
1 Parent(s): 36be038

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +327 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Bdayt
3
- emoji: 😻
4
- colorFrom: red
5
- colorTo: gray
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: bdayt
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: yellow
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,327 @@
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>Happy Birthday Jennifer/Mom!</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
+ @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Poppins:wght@300;400;600&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background: linear-gradient(135deg, #f5f7fa 0%, #ffeef8 100%);
15
+ min-height: 100vh;
16
+ overflow-x: hidden;
17
+ }
18
+
19
+ .dancing-font {
20
+ font-family: 'Dancing Script', cursive;
21
+ }
22
+
23
+ .heart {
24
+ animation: heartbeat 1.5s infinite;
25
+ }
26
+
27
+ @keyframes heartbeat {
28
+ 0% { transform: scale(1); }
29
+ 25% { transform: scale(1.1); }
30
+ 50% { transform: scale(1); }
31
+ 75% { transform: scale(1.1); }
32
+ 100% { transform: scale(1); }
33
+ }
34
+
35
+ .floating {
36
+ animation: floating 3s ease-in-out infinite;
37
+ }
38
+
39
+ @keyframes floating {
40
+ 0% { transform: translateY(0px); }
41
+ 50% { transform: translateY(-15px); }
42
+ 100% { transform: translateY(0px); }
43
+ }
44
+
45
+ .confetti {
46
+ position: absolute;
47
+ width: 10px;
48
+ height: 10px;
49
+ background-color: #f00;
50
+ opacity: 0;
51
+ }
52
+
53
+ .message-card {
54
+ transition: all 0.3s ease;
55
+ transform: rotate(-2deg);
56
+ }
57
+
58
+ .message-card:hover {
59
+ transform: rotate(0deg) scale(1.05);
60
+ }
61
+
62
+ .candle-flame {
63
+ width: 15px;
64
+ height: 30px;
65
+ background: #ff9d00;
66
+ border-radius: 50% 50% 20% 20%;
67
+ box-shadow: 0 0 20px #ff9d00, 0 0 60px #ff9d00, 0 0 100px #ff9d00;
68
+ animation: flicker 2s infinite alternate;
69
+ }
70
+
71
+ @keyframes flicker {
72
+ 0%, 100% { transform: scale(1); opacity: 1; }
73
+ 50% { transform: scale(0.9); opacity: 0.8; }
74
+ }
75
+ </style>
76
+ </head>
77
+ <body class="text-gray-800">
78
+ <!-- Confetti Container -->
79
+ <div id="confetti-container"></div>
80
+
81
+ <!-- Main Content -->
82
+ <div class="container mx-auto px-4 py-12 max-w-4xl">
83
+ <!-- Header -->
84
+ <header class="text-center mb-12">
85
+ <div class="floating inline-block">
86
+ <div class="text-6xl mb-2 dancing-font text-pink-600">Happy Birthday</div>
87
+ <h1 class="text-5xl font-bold text-purple-800">Jennifer <span class="heart text-red-500">♥</span></h1>
88
+ <div class="mt-4 flex justify-center">
89
+ <div class="w-8 h-8 rounded-full bg-yellow-400 mx-1"></div>
90
+ <div class="w-8 h-8 rounded-full bg-pink-400 mx-1"></div>
91
+ <div class="w-8 h-8 rounded-full bg-blue-400 mx-1"></div>
92
+ <div class="w-8 h-8 rounded-full bg-green-400 mx-1"></div>
93
+ <div class="w-8 h-8 rounded-full bg-purple-400 mx-1"></div>
94
+ </div>
95
+ </div>
96
+ </header>
97
+
98
+ <!-- Cake Section -->
99
+ <section class="mb-16 text-center">
100
+ <div class="relative inline-block">
101
+ <!-- Cake Plate -->
102
+ <div class="w-64 h-6 bg-gray-200 rounded-full mx-auto shadow-md"></div>
103
+ <!-- Cake Base -->
104
+ <div class="w-56 h-24 bg-gradient-to-b from-pink-300 to-pink-400 rounded-t-lg mx-auto -mt-3 shadow-inner"></div>
105
+ <!-- Cake Top -->
106
+ <div class="w-48 h-16 bg-gradient-to-b from-pink-200 to-pink-300 rounded-t-lg mx-auto -mt-1 shadow-inner"></div>
107
+ <!-- Icing -->
108
+ <div class="w-52 h-4 bg-pink-100 rounded-full mx-auto -mt-8"></div>
109
+ <!-- Candles -->
110
+ <div class="flex justify-center -mt-16 space-x-3">
111
+ <div class="relative">
112
+ <div class="w-3 h-16 bg-gradient-to-b from-yellow-100 to-yellow-300 mx-auto rounded-sm"></div>
113
+ <div class="candle-flame mx-auto -mt-6"></div>
114
+ </div>
115
+ <div class="relative">
116
+ <div class="w-3 h-20 bg-gradient-to-b from-blue-100 to-blue-300 mx-auto rounded-sm"></div>
117
+ <div class="candle-flame mx-auto -mt-6"></div>
118
+ </div>
119
+ <div class="relative">
120
+ <div class="w-3 h-18 bg-gradient-to-b from-purple-100 to-purple-300 mx-auto rounded-sm"></div>
121
+ <div class="candle-flame mx-auto -mt-6"></div>
122
+ </div>
123
+ </div>
124
+ </div>
125
+ <button id="blow-candles" class="mt-8 px-6 py-3 bg-pink-500 text-white rounded-full font-semibold hover:bg-pink-600 transition-all">
126
+ <i class="fas fa-wind mr-2"></i> Blow Out Candles
127
+ </button>
128
+ </section>
129
+
130
+ <!-- Messages Section -->
131
+ <section class="mb-16">
132
+ <h2 class="text-3xl font-bold text-center mb-8 dancing-font text-purple-700">Special Wishes For You</h2>
133
+
134
+ <div class="grid md:grid-cols-2 gap-6">
135
+ <!-- Message 1 -->
136
+ <div class="message-card p-6 bg-gradient-to-br from-purple-50 to-pink-50 rounded-lg shadow-md border-l-4 border-pink-400">
137
+ <div class="text-4xl text-pink-500 mb-3"><i class="fas fa-heart"></i></div>
138
+ <h3 class="text-xl font-semibold mb-2 text-purple-800">To The World's Best Mom</h3>
139
+ <p class="text-gray-700">Your love is the guiding light in our lives. Today we celebrate you and all the wonderful things you bring to this world.</p>
140
+ </div>
141
+
142
+ <!-- Message 2 -->
143
+ <div class="message-card p-6 bg-gradient-to-br from-blue-50 to-purple-50 rounded-lg shadow-md border-l-4 border-purple-400">
144
+ <div class="text-4xl text-purple-500 mb-3"><i class="fas fa-star"></i></div>
145
+ <h3 class="text-xl font-semibold mb-2 text-purple-800">Endless Appreciation</h3>
146
+ <p class="text-gray-700">For all the sacrifices you've made, the lessons you've taught, and the unconditional love you've given - thank you!</p>
147
+ </div>
148
+
149
+ <!-- Message 3 -->
150
+ <div class="message-card p-6 bg-gradient-to-br from-yellow-50 to-pink-50 rounded-lg shadow-md border-l-4 border-yellow-400">
151
+ <div class="text-4xl text-yellow-500 mb-3"><i class="fas fa-sun"></i></div>
152
+ <h3 class="text-xl font-semibold mb-2 text-purple-800">Your Special Day</h3>
153
+ <p class="text-gray-700">May this year bring you as much happiness as you've brought to others. You deserve all the joy in the world!</p>
154
+ </div>
155
+
156
+ <!-- Message 4 -->
157
+ <div class="message-card p-6 bg-gradient-to-br from-green-50 to-blue-50 rounded-lg shadow-md border-l-4 border-blue-400">
158
+ <div class="text-4xl text-blue-500 mb-3"><i class="fas fa-gift"></i></div>
159
+ <h3 class="text-xl font-semibold mb-2 text-purple-800">The Gift of You</h3>
160
+ <p class="text-gray-700">The greatest gift we've ever received is having you in our lives. Today we celebrate that precious gift!</p>
161
+ </div>
162
+ </div>
163
+ </section>
164
+
165
+ <!-- Countdown to Celebration -->
166
+ <section class="mb-16 text-center bg-gradient-to-r from-purple-100 to-pink-100 p-8 rounded-xl shadow-inner">
167
+ <h2 class="text-3xl font-bold mb-6 dancing-font text-purple-700">Celebration Countdown</h2>
168
+ <div class="flex justify-center space-x-4">
169
+ <div class="bg-white p-4 rounded-lg shadow-md w-20">
170
+ <div id="days" class="text-3xl font-bold text-pink-600">00</div>
171
+ <div class="text-sm text-gray-600">Days</div>
172
+ </div>
173
+ <div class="bg-white p-4 rounded-lg shadow-md w-20">
174
+ <div id="hours" class="text-3xl font-bold text-pink-600">00</div>
175
+ <div class="text-sm text-gray-600">Hours</div>
176
+ </div>
177
+ <div class="bg-white p-4 rounded-lg shadow-md w-20">
178
+ <div id="minutes" class="text-3xl font-bold text-pink-600">00</div>
179
+ <div class="text-sm text-gray-600">Minutes</div>
180
+ </div>
181
+ <div class="bg-white p-4 rounded-lg shadow-md w-20">
182
+ <div id="seconds" class="text-3xl font-bold text-pink-600">00</div>
183
+ <div class="text-sm text-gray-600">Seconds</div>
184
+ </div>
185
+ </div>
186
+ <p class="mt-6 text-purple-800">Until we celebrate together in person!</p>
187
+ </section>
188
+
189
+ <!-- Memory Lane -->
190
+ <section class="mb-16">
191
+ <h2 class="text-3xl font-bold text-center mb-8 dancing-font text-purple-700">Memory Lane</h2>
192
+ <div class="bg-white p-6 rounded-xl shadow-lg">
193
+ <div class="flex flex-wrap justify-center gap-4">
194
+ <!-- Memory Placeholders -->
195
+ <div class="w-32 h-32 bg-gradient-to-br from-pink-200 to-purple-200 rounded-lg flex items-center justify-center shadow-md">
196
+ <i class="fas fa-smile-beam text-4xl text-purple-600"></i>
197
+ </div>
198
+ <div class="w-32 h-32 bg-gradient-to-br from-yellow-200 to-pink-200 rounded-lg flex items-center justify-center shadow-md">
199
+ <i class="fas fa-laugh-beam text-4xl text-pink-600"></i>
200
+ </div>
201
+ <div class="w-32 h-32 bg-gradient-to-br from-blue-200 to-purple-200 rounded-lg flex items-center justify-center shadow-md">
202
+ <i class="fas fa-hands-helping text-4xl text-blue-600"></i>
203
+ </div>
204
+ <div class="w-32 h-32 bg-gradient-to-br from-green-200 to-blue-200 rounded-lg flex items-center justify-center shadow-md">
205
+ <i class="fas fa-heart text-4xl text-green-600"></i>
206
+ </div>
207
+ </div>
208
+ <p class="text-center mt-6 text-gray-700 italic">
209
+ "While we can't show photos here, every moment with you is a cherished memory in our hearts."
210
+ </p>
211
+ </div>
212
+ </section>
213
+
214
+ <!-- Final Wish -->
215
+ <section class="text-center py-12 bg-gradient-to-r from-pink-500 to-purple-600 rounded-xl shadow-xl text-white">
216
+ <div class="max-w-2xl mx-auto px-4">
217
+ <div class="text-5xl mb-6 dancing-font"><i class="fas fa-glass-cheers"></i></div>
218
+ <h2 class="text-4xl font-bold mb-4">Happy Birthday Jennifer!</h2>
219
+ <p class="text-xl mb-6">Wishing you a day filled with love, laughter, and all the happiness you bring to others!</p>
220
+ <div class="text-6xl">
221
+ <i class="fas fa-heart mx-2 heart"></i>
222
+ <i class="fas fa-star mx-2 floating" style="animation-delay: 0.5s"></i>
223
+ <i class="fas fa-birthday-cake mx-2 floating" style="animation-delay: 1s"></i>
224
+ </div>
225
+ </div>
226
+ </section>
227
+ </div>
228
+
229
+ <script>
230
+ // Confetti effect
231
+ function createConfetti() {
232
+ const colors = ['#f44336', '#e91e63', '#9c27b0', '#673ab7', '#3f51b5', '#2196f3', '#03a9f4', '#00bcd4', '#009688', '#4CAF50', '#8BC34A', '#CDDC39', '#FFEB3B', '#FFC107', '#FF9800', '#FF5722'];
233
+
234
+ for (let i = 0; i < 100; i++) {
235
+ const confetti = document.createElement('div');
236
+ confetti.className = 'confetti';
237
+ confetti.style.left = Math.random() * window.innerWidth + 'px';
238
+ confetti.style.backgroundColor = colors[Math.floor(Math.random() * colors.length)];
239
+ confetti.style.transform = `rotate(${Math.random() * 360}deg)`;
240
+
241
+ const animationDuration = Math.random() * 3 + 2;
242
+ confetti.style.animation = `fall ${animationDuration}s linear forwards`;
243
+
244
+ document.getElementById('confetti-container').appendChild(confetti);
245
+
246
+ // Animate
247
+ setTimeout(() => {
248
+ confetti.style.top = window.innerHeight + 'px';
249
+ confetti.style.opacity = '1';
250
+ confetti.style.transform = `rotate(${Math.random() * 360}deg) translate(${Math.random() * 200 - 100}px, ${Math.random() * 200 - 100}px)`;
251
+ }, 10);
252
+
253
+ // Remove after animation
254
+ setTimeout(() => {
255
+ confetti.remove();
256
+ }, animationDuration * 1000);
257
+ }
258
+
259
+ // Add CSS for falling animation
260
+ const style = document.createElement('style');
261
+ style.innerHTML = `
262
+ @keyframes fall {
263
+ to {
264
+ top: 100vh;
265
+ opacity: 0;
266
+ transform: rotate(360deg) translate(100px, 100px);
267
+ }
268
+ }
269
+ `;
270
+ document.head.appendChild(style);
271
+ }
272
+
273
+ // Blow candles effect
274
+ document.getElementById('blow-candles').addEventListener('click', function() {
275
+ const flames = document.querySelectorAll('.candle-flame');
276
+ flames.forEach(flame => {
277
+ flame.style.animation = 'none';
278
+ flame.style.opacity = '0';
279
+ flame.style.boxShadow = 'none';
280
+ flame.style.transform = 'scale(0)';
281
+ });
282
+
283
+ createConfetti();
284
+
285
+ // Show message
286
+ setTimeout(() => {
287
+ alert('Happy Birthday Jennifer! Your wish will come true!');
288
+ }, 1000);
289
+ });
290
+
291
+ // Countdown timer
292
+ function updateCountdown() {
293
+ // Set the date we're counting down to (next occurrence of birthday)
294
+ const now = new Date();
295
+ let birthday = new Date(now.getFullYear(), now.getMonth(), now.getDate() + 1);
296
+
297
+ // If birthday already passed this year, set for next year
298
+ if (now > birthday) {
299
+ birthday = new Date(now.getFullYear() + 1, now.getMonth(), now.getDate());
300
+ }
301
+
302
+ const diff = birthday - now;
303
+
304
+ const days = Math.floor(diff / (1000 * 60 * 60 * 24));
305
+ const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
306
+ const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
307
+ const seconds = Math.floor((diff % (1000 * 60)) / 1000);
308
+
309
+ document.getElementById('days').textContent = days.toString().padStart(2, '0');
310
+ document.getElementById('hours').textContent = hours.toString().padStart(2, '0');
311
+ document.getElementById('minutes').textContent = minutes.toString().padStart(2, '0');
312
+ document.getElementById('seconds').textContent = seconds.toString().padStart(2, '0');
313
+ }
314
+
315
+ // Update countdown every second
316
+ setInterval(updateCountdown, 1000);
317
+ updateCountdown();
318
+
319
+ // Floating animation for memory placeholders
320
+ const memories = document.querySelectorAll('.memory-lane div');
321
+ memories.forEach((memory, index) => {
322
+ memory.style.animation = `floating ${3 + Math.random() * 2}s ease-in-out infinite`;
323
+ memory.style.animationDelay = `${index * 0.2}s`;
324
+ });
325
+ </script>
326
+ <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=dsfijdskf/bdayt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
327
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ make a happy birthday site for Jennifer/Mom and dont include pcitures