Jinx5467 commited on
Commit
8dc38f4
·
verified ·
1 Parent(s): c518590

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +242 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Stop Bowling
3
- emoji: 🚀
4
  colorFrom: gray
5
- colorTo: green
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: stop-bowling
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,242 @@
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>Stop Bullying - Cartaz Impactante</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=Poppins:wght@400;700;900&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background-color: #f8fafc;
15
+ }
16
+
17
+ .poster {
18
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
19
+ background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
20
+ border-radius: 1rem;
21
+ overflow: hidden;
22
+ }
23
+
24
+ .hand-icon {
25
+ animation: wave 2s infinite;
26
+ transform-origin: 70% 70%;
27
+ }
28
+
29
+ @keyframes wave {
30
+ 0% { transform: rotate(0deg); }
31
+ 10% { transform: rotate(14deg); }
32
+ 20% { transform: rotate(-8deg); }
33
+ 30% { transform: rotate(14deg); }
34
+ 40% { transform: rotate(-4deg); }
35
+ 50% { transform: rotate(10deg); }
36
+ 60% { transform: rotate(0deg); }
37
+ 100% { transform: rotate(0deg); }
38
+ }
39
+
40
+ .copy-btn {
41
+ transition: all 0.3s ease;
42
+ }
43
+
44
+ .copy-btn:hover {
45
+ transform: translateY(-2px);
46
+ }
47
+
48
+ .heart-beat {
49
+ animation: heartbeat 1.5s ease-in-out infinite;
50
+ }
51
+
52
+ @keyframes heartbeat {
53
+ 0% { transform: scale(1); }
54
+ 25% { transform: scale(1.1); }
55
+ 50% { transform: scale(1); }
56
+ 75% { transform: scale(1.1); }
57
+ 100% { transform: scale(1); }
58
+ }
59
+
60
+ .image-container {
61
+ position: relative;
62
+ overflow: hidden;
63
+ border-radius: 0.5rem;
64
+ height: 200px;
65
+ }
66
+
67
+ .image-container img {
68
+ width: 100%;
69
+ height: 100%;
70
+ object-fit: cover;
71
+ transition: transform 0.5s ease;
72
+ }
73
+
74
+ .image-container:hover img {
75
+ transform: scale(1.05);
76
+ }
77
+
78
+ .image-overlay {
79
+ position: absolute;
80
+ bottom: 0;
81
+ left: 0;
82
+ right: 0;
83
+ background: rgba(0, 0, 0, 0.5);
84
+ color: white;
85
+ padding: 1rem;
86
+ }
87
+ </style>
88
+ </head>
89
+ <body class="min-h-screen flex items-center justify-center p-4">
90
+ <div class="poster w-full max-w-3xl">
91
+ <!-- Header with title -->
92
+ <div class="bg-gradient-to-r from-red-600 to-red-800 py-6 px-8 text-center relative">
93
+ <div class="absolute top-0 left-0 w-full h-full opacity-20">
94
+ <div class="absolute top-0 left-0 w-full h-full bg-repeat" style="background-image: url('https://images.unsplash.com/photo-1608889825103-eb2d9e23f5f4?q=80&w=1000');"></div>
95
+ </div>
96
+ <h1 class="text-4xl md:text-5xl font-black text-white uppercase tracking-wide relative z-10">
97
+ <span class="inline-block transform rotate-12">✋</span>
98
+ STOP BULLYING
99
+ <span class="inline-block transform -rotate-12">✋</span>
100
+ </h1>
101
+ <p class="text-white text-lg mt-2 font-medium relative z-10">Juntos contra a violência!</p>
102
+ </div>
103
+
104
+ <!-- Main content -->
105
+ <div class="p-8 space-y-6">
106
+ <!-- Image row -->
107
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
108
+ <div class="image-container">
109
+ <img src="https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Jovem triste">
110
+ <div class="image-overlay">
111
+ <p class="font-bold">Ninguém merece se sentir assim</p>
112
+ </div>
113
+ </div>
114
+ <div class="image-container">
115
+ <img src="https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Grupo de amigos">
116
+ <div class="image-overlay">
117
+ <p class="font-bold">A amizade supera qualquer diferença</p>
118
+ </div>
119
+ </div>
120
+ </div>
121
+
122
+ <!-- Quote 1 -->
123
+ <div class="bg-white p-6 rounded-lg shadow-md border-l-8 border-red-500 flex items-start">
124
+ <img src="https://images.unsplash.com/photo-1568602471122-7832951cc4c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80" alt="Rosto triste" class="w-16 h-16 rounded-full object-cover mr-4">
125
+ <div>
126
+ <p class="text-xl font-bold text-gray-800">
127
+ "Palavras podem machucar mais que socos. Pense antes de falar!"
128
+ </p>
129
+ <div class="mt-3 flex items-center text-red-500">
130
+ <i class="fas fa-heart heart-beat mr-2"></i>
131
+ <span class="text-sm font-medium">Seja gentil sempre</span>
132
+ </div>
133
+ </div>
134
+ </div>
135
+
136
+ <!-- Quote 2 -->
137
+ <div class="bg-white p-6 rounded-lg shadow-md border-l-8 border-blue-500 flex items-start">
138
+ <img src="https://images.unsplash.com/photo-1531123897727-8f129e1688ce?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80" alt="Diversidade" class="w-16 h-16 rounded-full object-cover mr-4">
139
+ <div>
140
+ <p class="text-xl font-bold text-gray-800">
141
+ "Ninguém é igual a ninguém, e isso é o que nos torna especiais. Respeite as diferenças!"
142
+ </p>
143
+ <div class="mt-3 flex items-center text-blue-500">
144
+ <i class="fas fa-hands-helping mr-2"></i>
145
+ <span class="text-sm font-medium">Diversidade é beleza</span>
146
+ </div>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Quote 3 -->
151
+ <div class="bg-white p-6 rounded-lg shadow-md border-l-8 border-purple-500 flex items-start">
152
+ <img src="https://images.unsplash.com/photo-1517841905240-472988babdf9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80" alt="Silêncio" class="w-16 h-16 rounded-full object-cover mr-4">
153
+ <div>
154
+ <p class="text-xl font-bold text-gray-800">
155
+ "Se você não tem nada de bom para dizer, fique quieto. Silêncio nunca machucou ninguém."
156
+ </p>
157
+ <div class="mt-3 flex items-center text-purple-500">
158
+ <i class="fas fa-comment-slash mr-2"></i>
159
+ <span class="text-sm font-medium">Pense duas vezes</span>
160
+ </div>
161
+ </div>
162
+ </div>
163
+
164
+ <!-- Quote 4 -->
165
+ <div class="bg-white p-6 rounded-lg shadow-md border-l-8 border-green-500 flex items-start">
166
+ <img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80" alt="Alerta" class="w-16 h-16 rounded-full object-cover mr-4">
167
+ <div>
168
+ <p class="text-xl font-bold text-gray-800">
169
+ "Bullying não é brincadeira. É covardia disfarçada de diversão."
170
+ </p>
171
+ <div class="mt-3 flex items-center text-green-500">
172
+ <i class="fas fa-exclamation-triangle mr-2"></i>
173
+ <span class="text-sm font-medium">Não seja cúmplice</span>
174
+ </div>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Image with message -->
179
+ <div class="image-container">
180
+ <img src="https://images.unsplash.com/photo-1498522271744-cdd435c13f24?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Mãos unidas">
181
+ <div class="image-overlay">
182
+ <h3 class="text-2xl font-black mb-2">FAÇA A DIFERENÇA!</h3>
183
+ <p class="text-white">
184
+ Se você sofre ou vê alguém sofrendo bullying, não fique calado.
185
+ Denuncie! Juntos podemos criar um ambiente melhor para todos.
186
+ </p>
187
+ </div>
188
+ </div>
189
+ </div>
190
+
191
+ <!-- Footer with share options -->
192
+ <div class="bg-gray-100 px-8 py-6 flex flex-col sm:flex-row items-center justify-between">
193
+ <div class="mb-4 sm:mb-0">
194
+ <h4 class="font-bold text-gray-700">Compartilhe esta mensagem:</h4>
195
+ <p class="text-sm text-gray-600">Ajude a conscientizar mais pessoas</p>
196
+ </div>
197
+ <div class="flex space-x-3">
198
+ <button onclick="copyPosterLink()" class="copy-btn bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-lg flex items-center">
199
+ <i class="fas fa-link mr-2"></i> Copiar Link
200
+ </button>
201
+ <a href="#" class="copy-btn bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg flex items-center">
202
+ <i class="fab fa-facebook-f mr-2"></i> Compartilhar
203
+ </a>
204
+ <a href="#" class="copy-btn bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-lg flex items-center">
205
+ <i class="fab fa-whatsapp mr-2"></i> WhatsApp
206
+ </a>
207
+ </div>
208
+ </div>
209
+ </div>
210
+
211
+ <!-- Toast notification -->
212
+ <div id="toast" class="fixed bottom-4 right-4 bg-green-600 text-white px-6 py-3 rounded-lg shadow-lg hidden transform transition-all duration-300 translate-y-10">
213
+ <div class="flex items-center">
214
+ <i class="fas fa-check-circle mr-2"></i>
215
+ <span>Link copiado com sucesso!</span>
216
+ </div>
217
+ </div>
218
+
219
+ <script>
220
+ function copyPosterLink() {
221
+ // In a real scenario, this would be the actual URL to share
222
+ const dummyLink = "https://exemplo.com/stop-bullying-cartaz";
223
+
224
+ navigator.clipboard.writeText(dummyLink).then(() => {
225
+ // Show toast notification
226
+ const toast = document.getElementById('toast');
227
+ toast.classList.remove('hidden');
228
+ toast.classList.remove('translate-y-10');
229
+ toast.classList.add('translate-y-0');
230
+
231
+ // Hide after 3 seconds
232
+ setTimeout(() => {
233
+ toast.classList.add('translate-y-10');
234
+ setTimeout(() => {
235
+ toast.classList.add('hidden');
236
+ }, 300);
237
+ }, 3000);
238
+ });
239
+ }
240
+ </script>
241
+ <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=Jinx5467/stop-bowling" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
242
+ </html>
prompts.txt ADDED
File without changes