maralvic commited on
Commit
b61a82d
·
verified ·
1 Parent(s): 411346e

Preparar um site com o seguinte anagrama, bem colorido e com imagens de amor: Sou grato por insistir em nós e acreditar na nossa união, Um agradecimento especial por estar perto de mim, mesmo nos momentos em que eu mesmo não estava, Por suportar minhas crises e iluminar o meu caminho com sua luz, Eu sou feliz por você ter aparecido na minha vida quando menos esperava, Reconheço o quanto você derrubou obstáculos e chegou onde está, Grato por mostrar que tem atitude e, mesmo na tempestade, acreditou que um sol te esperava, Incrível como você faz eu sentir de novo o que eu já não me importava mais... você me faz tão bem, Realmente te amo cada dia mais, desde o primeiro beijo na melhor viagem das nossas vidas, Lembre-se sempre: você é minha supergirl, minha força, meu amor, minha alegria! Com todo meu amor, Marcelo ❤ Você é minha supergirl, Alessandra! - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +213 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Sg
3
- emoji: 🌍
4
- colorFrom: red
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: sg
3
+ emoji: 🐳
4
+ colorFrom: yellow
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,213 @@
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="pt-br">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Para Minha Supergirl - Alessandra</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://fonts.googleapis.com/css2?family=Playball&family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <style>
11
+ .heartbeat {
12
+ animation: heartbeat 1.5s ease-in-out infinite both;
13
+ }
14
+ @keyframes heartbeat {
15
+ 0% { transform: scale(1); }
16
+ 14% { transform: scale(1.1); }
17
+ 28% { transform: scale(1); }
18
+ 42% { transform: scale(1.1); }
19
+ 70% { transform: scale(1); }
20
+ }
21
+ .text-shadow {
22
+ text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
23
+ }
24
+ .letter {
25
+ transition: all 0.3s ease;
26
+ }
27
+ .letter:hover {
28
+ transform: scale(1.2);
29
+ color: #f43f5e;
30
+ }
31
+ .cursive {
32
+ font-family: 'Playball', cursive;
33
+ }
34
+ body {
35
+ font-family: 'Poppins', sans-serif;
36
+ }
37
+ .love-word {
38
+ background: linear-gradient(45deg, #ec4899, #f43f5e);
39
+ -webkit-background-clip: text;
40
+ background-clip: text;
41
+ color: transparent;
42
+ display: inline-block;
43
+ }
44
+ </style>
45
+ </head>
46
+ <body class="bg-gradient-to-b from-pink-50 to-red-50 min-h-screen">
47
+ <div class="container mx-auto px-4 py-8 max-w-4xl">
48
+ <!-- Header with Hearts -->
49
+ <div class="text-center mb-8">
50
+ <div class="flex justify-center space-x-6 mb-4">
51
+ <i data-feather="heart" class="w-12 h-12 text-red-500 heartbeat"></i>
52
+ <i data-feather="heart" class="w-16 h-16 text-pink-500 heartbeat" style="animation-delay: 0.2s;"></i>
53
+ <i data-feather="heart" class="w-12 h-12 text-red-500 heartbeat" style="animation-delay: 0.4s;"></i>
54
+ </div>
55
+ <h1 class="text-4xl md:text-5xl font-bold cursive love-word text-shadow">Para Minha Supergirl</h1>
56
+ <p class="text-xl text-gray-600 cursive">Alessandra ❤</p>
57
+ </div>
58
+
59
+ <!-- Photo Frame -->
60
+ <div class="flex justify-center mb-12">
61
+ <div class="relative group">
62
+ <div class="absolute -inset-2 bg-gradient-to-r from-pink-500 to-red-500 rounded-lg blur opacity-75 group-hover:opacity-100 transition duration-300"></div>
63
+ <div class="relative bg-white rounded-lg overflow-hidden shadow-xl w-64 h-64 flex items-center justify-center">
64
+ <div id="couplePhoto" class="w-full h-full bg-center bg-cover" style="background-image: url('https://images.unsplash.com/photo-1529631176507-4098a70bfe56?ixlib=rb-1.2.1&auto=format&fit=crop&w=300&q=80')"></div>
65
+ </div>
66
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black/60 to-transparent p-4">
67
+ <p class="text-white text-center cursive text-shadow">Nosso Amor ❤</p>
68
+ </div>
69
+ </div>
70
+ </div>
71
+
72
+ <!-- Anagram Letters -->
73
+ <div class="bg-white rounded-xl shadow-lg p-6 mb-8">
74
+ <h2 class="text-2xl font-bold text-center mb-6 text-red-600 cursive">Nosso Anagrama Especial</h2>
75
+ <div id="anagramLetters" class="flex flex-wrap justify-center gap-2 mb-6">
76
+ <!-- Letters will be added here by JavaScript -->
77
+ </div>
78
+ <button id="revealBtn" class="w-full bg-gradient-to-r from-pink-500 to-red-500 text-white py-3 px-6 rounded-lg font-bold transition hover:from-pink-600 hover:to-red-600 focus:outline-none focus:ring-2 focus:ring-pink-400 focus:ring-opacity-50">
79
+ Revelar Mensagem
80
+ </button>
81
+ </div>
82
+
83
+ <!-- Hidden Message -->
84
+ <div id="hiddenMessage" class="hidden bg-white rounded-xl shadow-lg p-6 mb-8">
85
+ <div class="space-y-6">
86
+ <p class="text-lg text-gray-800 leading-relaxed"><span class="font-bold text-pink-600">Sou grato</span> por insistir em nós e acreditar na nossa união,</p>
87
+ <p class="text-lg text-gray-800 leading-relaxed"><span class="font-bold text-pink-600">Um agradecimento especial</span> por estar perto de mim, mesmo nos momentos em que eu mesmo não estava,</p>
88
+ <p class="text-lg text-gray-800 leading-relaxed"><span class="font-bold text-pink-600">Por suportar</span> minhas crises e iluminar o meu caminho com sua luz,</p>
89
+ <p class="text-lg text-gray-800 leading-relaxed"><span class="font-bold text-pink-600">Eu sou feliz</span> por você ter aparecido na minha vida quando menos esperava,</p>
90
+ <p class="text-lg text-gray-800 leading-relaxed"><span class="font-bold text-pink-600">Reconheço</span> o quanto você derrubou obstáculos e chegou onde está,</p>
91
+ <p class="text-lg text-gray-800 leading-relaxed"><span class="font-bold text-pink-600">Grato por mostrar</span> que tem atitude e, mesmo na tempestade, acreditou que um sol te esperava,</p>
92
+ <p class="text-lg text-gray-800 leading-relaxed"><span class="font-bold text-pink-600">Incrível como</span> você faz eu sentir de novo o que eu já não me importava mais... você me faz tão bem,</p>
93
+ <p class="text-lg text-gray-800 leading-relaxed"><span class="font-bold text-pink-600">Realmente te amo</span> cada dia mais, desde o primeiro beijo na melhor viagem das nossas vidas,</p>
94
+ <p class="text-lg text-gray-800 leading-relaxed"><span class="font-bold text-pink-600">Lembre-se sempre</span>: você é minha supergirl, minha força, meu amor, minha alegria!</p>
95
+ </div>
96
+ <div class="mt-8 text-center">
97
+ <div class="inline-block border-t-2 border-pink-200 pt-4">
98
+ <p class="text-xl cursive text-pink-600">Com todo meu amor,</p>
99
+ <p class="text-2xl font-bold cursive text-red-600">Marcelo ❤</p>
100
+ </div>
101
+ </div>
102
+ </div>
103
+
104
+ <!-- Interactive Hearts -->
105
+ <div class="text-center mt-12">
106
+ <button id="heartButton" class="bg-red-500 text-white p-4 rounded-full shadow-lg hover:bg-red-600 transition duration-300 focus:outline-none focus:ring-2 focus:ring-red-400 focus:ring-opacity-50">
107
+ <i data-feather="heart" class="w-10 h-10"></i>
108
+ <span class="sr-only">Enviar Coração</span>
109
+ </button>
110
+ <p class="text-gray-600 mt-2">Clique para enviar um coração para sua Supergirl</p>
111
+ <div id="heartsContainer" class="fixed inset-0 pointer-events-none overflow-hidden"></div>
112
+ </div>
113
+ </div>
114
+
115
+ <script>
116
+ document.addEventListener('DOMContentLoaded', function() {
117
+ feather.replace();
118
+
119
+ // Anagram letters
120
+ const message = "GRATO POR VOCÊ - MINHA SUPER GIRL ALESSANDRA ❤";
121
+ const letters = message.split('');
122
+ const anagramLetters = document.getElementById('anagramLetters');
123
+ const shuffledLetters = [...letters].sort(() => Math.random() - 0.5);
124
+
125
+ shuffledLetters.forEach((letter, index) => {
126
+ const letterElement = document.createElement('span');
127
+ letterElement.textContent = letter;
128
+ letterElement.className = 'text-3xl letter cursor-pointer';
129
+ letterElement.style.transitionDelay = `${index * 0.02}s`;
130
+ anagramLetters.appendChild(letterElement);
131
+ });
132
+
133
+ // Reveal message
134
+ const revealBtn = document.getElementById('revealBtn');
135
+ const hiddenMessage = document.getElementById('hiddenMessage');
136
+
137
+ revealBtn.addEventListener('click', function() {
138
+ hiddenMessage.classList.remove('hidden');
139
+ revealBtn.classList.add('hidden');
140
+
141
+ // Animate the letters
142
+ const letters = document.querySelectorAll('.letter');
143
+ letters.forEach((letter, index) => {
144
+ setTimeout(() => {
145
+ letter.style.transform = 'translateY(-20px)';
146
+ letter.style.opacity = '0';
147
+ }, index * 20);
148
+ });
149
+
150
+ setTimeout(() => {
151
+ anagramLetters.classList.add('hidden');
152
+ }, letters.length * 20 + 200);
153
+ });
154
+
155
+ // Floating hearts effect
156
+ const heartButton = document.getElementById('heartButton');
157
+ const heartsContainer = document.getElementById('heartsContainer');
158
+
159
+ heartButton.addEventListener('click', function() {
160
+ createHeart();
161
+
162
+ // Create multiple hearts for a burst effect
163
+ for (let i = 0; i < 10; i++) {
164
+ setTimeout(createHeart, i * 100);
165
+ }
166
+ });
167
+
168
+ function createHeart() {
169
+ const heart = document.createElement('div');
170
+ heart.innerHTML = '<i data-feather="heart" class="w-6 h-6 text-red-500"></i>';
171
+ feather.replace();
172
+
173
+ const size = Math.random() * 20 + 10;
174
+ heart.style.position = 'absolute';
175
+ heart.style.left = Math.random() * 100 + 'vw';
176
+ heart.style.top = '100vh';
177
+ heart.style.width = size + 'px';
178
+ heart.style.height = size + 'px';
179
+ heart.style.opacity = '0';
180
+ heart.style.transform = 'translateY(0) scale(1)';
181
+ heart.style.transition = 'all 1s ease-out';
182
+
183
+ heartsContainer.appendChild(heart);
184
+
185
+ // Trigger reflow to start animation
186
+ setTimeout(() => {
187
+ heart.style.opacity = '1';
188
+ heart.style.transform = `translateY(${-size - Math.random() * 100}px) scale(${Math.random() * 0.5 + 0.5})`;
189
+ }, 10);
190
+
191
+ // Remove heart after animation
192
+ setTimeout(() => {
193
+ heart.remove();
194
+ }, 2000);
195
+ }
196
+
197
+ // Change photo on click
198
+ const couplePhoto = document.getElementById('couplePhoto');
199
+ const photos = [
200
+ 'https://images.unsplash.com/photo-1529631176507-4098a70bfe56?ixlib=rb-1.2.1&auto=format&fit=crop&w=300&q=80',
201
+ 'https://images.unsplash.com/photo-1529333164857-42f00e56a868?ixlib=rb-1.2.1&auto=format&fit=crop&w=300&q=80',
202
+ 'https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?ixlib=rb-1.2.1&auto=format&fit=crop&w=300&q=80'
203
+ ];
204
+ let currentPhoto = 0;
205
+
206
+ couplePhoto.addEventListener('click', function() {
207
+ currentPhoto = (currentPhoto + 1) % photos.length;
208
+ couplePhoto.style.backgroundImage = `url('${photos[currentPhoto]}')`;
209
+ });
210
+ });
211
+ </script>
212
+ <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=maralvic/sg" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
213
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Preparar um site com o seguinte anagrama, bem colorido e com imagens de amor: Sou grato por insistir em nós e acreditar na nossa união, Um agradecimento especial por estar perto de mim, mesmo nos momentos em que eu mesmo não estava, Por suportar minhas crises e iluminar o meu caminho com sua luz, Eu sou feliz por você ter aparecido na minha vida quando menos esperava, Reconheço o quanto você derrubou obstáculos e chegou onde está, Grato por mostrar que tem atitude e, mesmo na tempestade, acreditou que um sol te esperava, Incrível como você faz eu sentir de novo o que eu já não me importava mais... você me faz tão bem, Realmente te amo cada dia mais, desde o primeiro beijo na melhor viagem das nossas vidas, Lembre-se sempre: você é minha supergirl, minha força, meu amor, minha alegria! Com todo meu amor, Marcelo ❤ Você é minha supergirl, Alessandra!