Enjii commited on
Commit
c095173
Β·
verified Β·
1 Parent(s): 5971992

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +278 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Https Enkhtsetsegshiren Dev
3
- emoji: 🐒
4
- colorFrom: pink
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: https-enkhtsetsegshiren-dev
3
+ emoji: 🐳
4
+ colorFrom: gray
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,278 @@
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>World Love - Spreading Love Across the Globe</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
+ .heart-pulse {
11
+ animation: pulse 1.5s infinite;
12
+ }
13
+ @keyframes pulse {
14
+ 0% { transform: scale(1); }
15
+ 50% { transform: scale(1.1); }
16
+ 100% { transform: scale(1); }
17
+ }
18
+ .globe-spin {
19
+ animation: spin 20s linear infinite;
20
+ }
21
+ @keyframes spin {
22
+ from { transform: rotate(0deg); }
23
+ to { transform: rotate(360deg); }
24
+ }
25
+ .love-message {
26
+ background: linear-gradient(45deg, #ff6b6b, #ff8e8e, #ffb3b3, #ffd8d8);
27
+ background-size: 300% 300%;
28
+ animation: gradient 8s ease infinite;
29
+ }
30
+ @keyframes gradient {
31
+ 0% { background-position: 0% 50%; }
32
+ 50% { background-position: 100% 50%; }
33
+ 100% { background-position: 0% 50%; }
34
+ }
35
+ .country-card:hover {
36
+ transform: translateY(-5px);
37
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
38
+ }
39
+ </style>
40
+ </head>
41
+ <body class="bg-gray-50 font-sans">
42
+ <!-- Header with animated heart -->
43
+ <header class="bg-gradient-to-r from-pink-500 to-red-500 text-white py-8 px-4 shadow-lg">
44
+ <div class="container mx-auto flex flex-col items-center">
45
+ <div class="heart-pulse text-6xl mb-4">
46
+ <i class="fas fa-heart"></i>
47
+ </div>
48
+ <h1 class="text-4xl md:text-5xl font-bold text-center mb-2">World Love</h1>
49
+ <p class="text-xl text-center max-w-2xl">Spreading love, kindness, and compassion across every continent</p>
50
+ </div>
51
+ </header>
52
+
53
+ <!-- Main content -->
54
+ <main class="container mx-auto px-4 py-12">
55
+ <!-- Globe animation section -->
56
+ <section class="mb-16 flex flex-col md:flex-row items-center justify-between">
57
+ <div class="md:w-1/2 mb-8 md:mb-0 flex justify-center">
58
+ <div class="relative w-64 h-64">
59
+ <div class="globe-spin text-9xl text-blue-500 absolute">
60
+ <i class="fas fa-globe-americas"></i>
61
+ </div>
62
+ <div class="heart-pulse text-4xl text-red-500 absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2">
63
+ <i class="fas fa-heart"></i>
64
+ </div>
65
+ </div>
66
+ </div>
67
+ <div class="md:w-1/2">
68
+ <h2 class="text-3xl font-bold mb-4 text-gray-800">Love Knows No Borders</h2>
69
+ <p class="text-lg text-gray-600 mb-6">In every corner of our beautiful planet, love manifests in countless forms. From the warm embrace of family to the kindness of strangers, love connects us all as one human family.</p>
70
+ <button id="loveBtn" class="bg-pink-500 hover:bg-pink-600 text-white font-bold py-3 px-6 rounded-full transition duration-300 transform hover:scale-105">
71
+ Share Your Love <i class="fas fa-heart ml-2"></i>
72
+ </button>
73
+ </div>
74
+ </section>
75
+
76
+ <!-- Love messages from around the world -->
77
+ <section class="mb-16">
78
+ <h2 class="text-3xl font-bold mb-8 text-center text-gray-800">Love in Different Cultures</h2>
79
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
80
+ <!-- Country 1 -->
81
+ <div class="country-card bg-white p-6 rounded-lg shadow-md transition duration-300">
82
+ <div class="flex items-center mb-4">
83
+ <span class="text-2xl mr-3">πŸ‡«πŸ‡·</span>
84
+ <h3 class="text-xl font-semibold">France</h3>
85
+ </div>
86
+ <p class="text-gray-600 mb-4">"Amour" - The French celebrate love with romantic gestures, poetry, and the iconic "Pont des Arts" love lock bridge.</p>
87
+ <div class="text-pink-500">
88
+ <i class="fas fa-heart"></i>
89
+ <i class="fas fa-heart"></i>
90
+ <i class="fas fa-heart"></i>
91
+ </div>
92
+ </div>
93
+
94
+ <!-- Country 2 -->
95
+ <div class="country-card bg-white p-6 rounded-lg shadow-md transition duration-300">
96
+ <div class="flex items-center mb-4">
97
+ <span class="text-2xl mr-3">πŸ‡―πŸ‡΅</span>
98
+ <h3 class="text-xl font-semibold">Japan</h3>
99
+ </div>
100
+ <p class="text-gray-600 mb-4">"ζ„› (Ai)" - Expressed through quiet devotion, thoughtful actions, and beautiful traditions like writing love letters.</p>
101
+ <div class="text-pink-500">
102
+ <i class="fas fa-heart"></i>
103
+ <i class="fas fa-heart"></i>
104
+ <i class="fas fa-heart"></i>
105
+ </div>
106
+ </div>
107
+
108
+ <!-- Country 3 -->
109
+ <div class="country-card bg-white p-6 rounded-lg shadow-md transition duration-300">
110
+ <div class="flex items-center mb-4">
111
+ <span class="text-2xl mr-3">πŸ‡ΏπŸ‡¦</span>
112
+ <h3 class="text-xl font-semibold">South Africa</h3>
113
+ </div>
114
+ <p class="text-gray-600 mb-4">"Ubuntu" - Meaning "I am because we are," this philosophy embodies love as communal care and shared humanity.</p>
115
+ <div class="text-pink-500">
116
+ <i class="fas fa-heart"></i>
117
+ <i class="fas fa-heart"></i>
118
+ <i class="fas fa-heart"></i>
119
+ </div>
120
+ </div>
121
+ </div>
122
+ </section>
123
+
124
+ <!-- Interactive love message board -->
125
+ <section class="love-message p-8 rounded-lg shadow-lg mb-16">
126
+ <h2 class="text-3xl font-bold mb-6 text-center text-white">Spread Your Love Worldwide</h2>
127
+ <div class="max-w-2xl mx-auto">
128
+ <textarea id="loveMessage" class="w-full p-4 rounded-lg mb-4" rows="4" placeholder="Write a message of love, hope, or kindness..."></textarea>
129
+ <div class="flex justify-between items-center">
130
+ <div class="flex space-x-2">
131
+ <button class="emoji-btn p-2 rounded-full bg-white hover:bg-gray-100" data-emoji="❀️">❀️</button>
132
+ <button class="emoji-btn p-2 rounded-full bg-white hover:bg-gray-100" data-emoji="😊">😊</button>
133
+ <button class="emoji-btn p-2 rounded-full bg-white hover:bg-gray-100" data-emoji="🌎">🌎</button>
134
+ <button class="emoji-btn p-2 rounded-full bg-white hover:bg-gray-100" data-emoji="✌️">✌️</button>
135
+ </div>
136
+ <button id="submitLove" class="bg-white text-pink-500 font-bold py-2 px-6 rounded-full hover:bg-gray-100 transition">
137
+ Share <i class="fas fa-paper-plane ml-2"></i>
138
+ </button>
139
+ </div>
140
+ </div>
141
+ </section>
142
+
143
+ <!-- World love statistics -->
144
+ <section class="bg-white p-8 rounded-lg shadow-lg">
145
+ <h2 class="text-3xl font-bold mb-8 text-center text-gray-800">Love By The Numbers</h2>
146
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6 text-center">
147
+ <div class="p-4">
148
+ <div class="text-5xl font-bold text-pink-500 mb-2">7.9B</div>
149
+ <p class="text-gray-600">Hearts Beating</p>
150
+ </div>
151
+ <div class="p-4">
152
+ <div class="text-5xl font-bold text-pink-500 mb-2">195</div>
153
+ <p class="text-gray-600">Countries Sharing Love</p>
154
+ </div>
155
+ <div class="p-4">
156
+ <div class="text-5xl font-bold text-pink-500 mb-2">6,500+</div>
157
+ <p class="text-gray-600">Languages of Love</p>
158
+ </div>
159
+ <div class="p-4">
160
+ <div class="text-5xl font-bold text-pink-500 mb-2">∞</div>
161
+ <p class="text-gray-600">Capacity to Love</p>
162
+ </div>
163
+ </div>
164
+ </section>
165
+ </main>
166
+
167
+ <!-- Footer -->
168
+ <footer class="bg-gray-800 text-white py-12">
169
+ <div class="container mx-auto px-4">
170
+ <div class="flex flex-col md:flex-row justify-between items-center">
171
+ <div class="mb-6 md:mb-0">
172
+ <div class="flex items-center">
173
+ <div class="heart-pulse text-3xl text-red-500 mr-2">
174
+ <i class="fas fa-heart"></i>
175
+ </div>
176
+ <h3 class="text-2xl font-bold">World Love</h3>
177
+ </div>
178
+ <p class="mt-2 text-gray-400">Connecting hearts across the globe</p>
179
+ </div>
180
+ <div class="flex space-x-6">
181
+ <a href="#" class="text-2xl hover:text-pink-400 transition"><i class="fab fa-facebook"></i></a>
182
+ <a href="#" class="text-2xl hover:text-pink-400 transition"><i class="fab fa-twitter"></i></a>
183
+ <a href="#" class="text-2xl hover:text-pink-400 transition"><i class="fab fa-instagram"></i></a>
184
+ <a href="#" class="text-2xl hover:text-pink-400 transition"><i class="fab fa-youtube"></i></a>
185
+ </div>
186
+ </div>
187
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
188
+ <p>Β© 2023 World Love. All rights reserved. Made with <i class="fas fa-heart text-red-500"></i> for the world.</p>
189
+ </div>
190
+ </div>
191
+ </footer>
192
+
193
+ <!-- Love modal -->
194
+ <div id="loveModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center hidden z-50">
195
+ <div class="bg-white p-8 rounded-lg max-w-md mx-4 relative">
196
+ <button id="closeModal" class="absolute top-4 right-4 text-gray-500 hover:text-gray-700">
197
+ <i class="fas fa-times"></i>
198
+ </button>
199
+ <div class="text-center">
200
+ <div class="text-6xl text-red-500 mb-4">
201
+ <i class="fas fa-heart"></i>
202
+ </div>
203
+ <h3 class="text-2xl font-bold mb-4">Thank You for Sharing Love!</h3>
204
+ <p class="text-gray-600 mb-6">Your message of love has been added to our global collection. Together, we're making the world a more loving place.</p>
205
+ <button id="modalCloseBtn" class="bg-pink-500 hover:bg-pink-600 text-white font-bold py-2 px-6 rounded-full transition">
206
+ Continue Spreading Love
207
+ </button>
208
+ </div>
209
+ </div>
210
+ </div>
211
+
212
+ <script>
213
+ // Interactive elements
214
+ document.getElementById('loveBtn').addEventListener('click', function() {
215
+ document.getElementById('loveMessage').scrollIntoView({ behavior: 'smooth' });
216
+ });
217
+
218
+ // Emoji buttons
219
+ const emojiBtns = document.querySelectorAll('.emoji-btn');
220
+ emojiBtns.forEach(btn => {
221
+ btn.addEventListener('click', function() {
222
+ const textarea = document.getElementById('loveMessage');
223
+ const emoji = this.getAttribute('data-emoji');
224
+ textarea.value += emoji;
225
+ textarea.focus();
226
+ });
227
+ });
228
+
229
+ // Submit love message
230
+ document.getElementById('submitLove').addEventListener('click', function() {
231
+ const message = document.getElementById('loveMessage').value.trim();
232
+ if (message) {
233
+ document.getElementById('loveModal').classList.remove('hidden');
234
+ document.getElementById('loveMessage').value = '';
235
+ } else {
236
+ alert('Please write a message of love first!');
237
+ }
238
+ });
239
+
240
+ // Close modal
241
+ document.getElementById('closeModal').addEventListener('click', function() {
242
+ document.getElementById('loveModal').classList.add('hidden');
243
+ });
244
+
245
+ document.getElementById('modalCloseBtn').addEventListener('click', function() {
246
+ document.getElementById('loveModal').classList.add('hidden');
247
+ });
248
+
249
+ // Random heart animation for fun
250
+ setInterval(() => {
251
+ const heart = document.createElement('div');
252
+ heart.innerHTML = '<i class="fas fa-heart text-red-500"></i>';
253
+ heart.className = 'absolute text-2xl opacity-70';
254
+ heart.style.left = Math.random() * 100 + 'vw';
255
+ heart.style.top = '-30px';
256
+ heart.style.animation = `fall ${Math.random() * 3 + 2}s linear forwards`;
257
+
258
+ document.body.appendChild(heart);
259
+
260
+ // Remove after animation
261
+ setTimeout(() => {
262
+ heart.remove();
263
+ }, 5000);
264
+
265
+ // Add falling animation
266
+ const style = document.createElement('style');
267
+ style.innerHTML = `
268
+ @keyframes fall {
269
+ to {
270
+ transform: translateY(calc(100vh + 30px)) rotate(${Math.random() * 360}deg);
271
+ }
272
+ }
273
+ `;
274
+ document.head.appendChild(style);
275
+ }, 300);
276
+ </script>
277
+ <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=Enjii/https-enkhtsetsegshiren-dev" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
278
+ </html>