CabirPoya commited on
Commit
e51722e
·
verified ·
1 Parent(s): c0917f7

undefined - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +365 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Mycode
3
- emoji: 🐨
4
- colorFrom: gray
5
  colorTo: pink
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: mycode
3
+ emoji: 🐳
4
+ colorFrom: green
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,365 @@
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="fa" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>گنجور | بزرگترین مجموعه اشعار فارسی</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=Noto+Naskh+Arabic:wght@400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Noto Naskh Arabic', serif;
14
+ background-color: #f8f5f2;
15
+ }
16
+
17
+ .poet-card {
18
+ transition: transform 0.3s ease;
19
+ }
20
+
21
+ .poet-card:hover {
22
+ transform: translateY(-5px);
23
+ }
24
+
25
+ .century-tab.active {
26
+ background-color: #ed8936;
27
+ color: white;
28
+ }
29
+
30
+ .login-modal {
31
+ display: none;
32
+ animation: fadeIn 0.3s;
33
+ }
34
+
35
+ @keyframes fadeIn {
36
+ from { opacity: 0; }
37
+ to { opacity: 1; }
38
+ }
39
+ </style>
40
+ </head>
41
+ <body class="min-h-screen bg-gray-50">
42
+ <!-- Header -->
43
+ <header class="bg-amber-700 text-white shadow-lg">
44
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
45
+ <div class="flex items-center space-x-2 space-x-reverse">
46
+ <img src="https://ganjoor.net/image/gdap.png" alt="لوگوی گنجور" class="h-12">
47
+ <h1 class="text-xl font-bold">گنجور</h1>
48
+ </div>
49
+
50
+ <div class="hidden md:flex items-center space-x-4 space-x-reverse">
51
+ <div class="relative">
52
+ <input type="text" placeholder="جستجو در گنجور..." class="bg-amber-600 px-4 py-2 rounded-full text-white placeholder-amber-200 focus:outline-none focus:ring-2 focus:ring-amber-400 w-64">
53
+ <button class="absolute left-3 top-2 text-amber-200">
54
+ <i class="fas fa-search"></i>
55
+ </button>
56
+ </div>
57
+ <button id="loginBtn" class="bg-white text-amber-700 px-4 py-2 rounded-full hover:bg-amber-100 transition duration-200">
58
+ <i class="fas fa-user ml-1"></i> ورود کاربر
59
+ </button>
60
+ </div>
61
+
62
+ <button class="md:hidden text-xl">
63
+ <i class="fas fa-bars"></i>
64
+ </button>
65
+ </div>
66
+ </header>
67
+
68
+ <!-- Hero Section -->
69
+ <section class="bg-gradient-to-b from-amber-700 to-amber-500 text-white py-12">
70
+ <div class="container mx-auto px-4 text-center">
71
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">گنجینهٔ اشعار فارسی</h2>
72
+ <p class="text-lg md:text-xl mb-8 max-w-3xl mx-auto">بزرگترین مجموعهٔ دیجیتال شعر فارسی با بیش از ۳۰۰ شاعر از قرن سوم تا چهاردهم هجری</p>
73
+ <div class="flex justify-center space-x-4 space-x-reverse">
74
+ <button class="bg-white text-amber-700 px-6 py-3 rounded-full hover:bg-amber-100 transition duration-200 font-medium">
75
+ <i class="fas fa-random ml-2"></i> بیت تصادفی
76
+ </button>
77
+ <button class="bg-transparent border-2 border-white px-6 py-3 rounded-full hover:bg-white hover:text-amber-700 transition duration-200 font-medium">
78
+ <i class="fas fa-book ml-2"></i> کتابخانه گنجور
79
+ </button>
80
+ </div>
81
+ </div>
82
+ </section>
83
+
84
+ <!-- Popular Poets -->
85
+ <section class="py-12 bg-white">
86
+ <div class="container mx-auto px-4">
87
+ <h2 class="text-2xl font-bold mb-8 text-gray-800 border-b-2 border-amber-200 pb-2 inline-block">سخنوران پرمخاطب</h2>
88
+
89
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-6 mt-8">
90
+ <!-- Poet 1 -->
91
+ <a href="https://ganjoor.net/hafez" class="poet-card bg-gray-50 rounded-lg overflow-hidden shadow-md hover:shadow-lg text-center">
92
+ <img src="https://api.ganjoor.net/api/ganjoor/poet/image/hafez.gif" alt="حافظ شیرازی" class="w-full h-40 object-cover">
93
+ <div class="p-4">
94
+ <h3 class="font-bold text-gray-800">حافظ</h3>
95
+ </div>
96
+ </a>
97
+
98
+ <!-- Poet 2 -->
99
+ <a href="https://ganjoor.net/saadi" class="poet-card bg-gray-50 rounded-lg overflow-hidden shadow-md hover:shadow-lg text-center">
100
+ <img src="https://api.ganjoor.net/api/ganjoor/poet/image/saadi.gif" alt="سعدی شیرازی" class="w-full h-40 object-cover">
101
+ <div class="p-4">
102
+ <h3 class="font-bold text-gray-800">سعدی</h3>
103
+ </div>
104
+ </a>
105
+
106
+ <!-- Poet 3 -->
107
+ <a href="https://ganjoor.net/moulavi" class="poet-card bg-gray-50 rounded-lg overflow-hidden shadow-md hover:shadow-lg text-center">
108
+ <img src="https://api.ganjoor.net/api/ganjoor/poet/image/moulavi.gif" alt="مولوی" class="w-full h-40 object-cover">
109
+ <div class="p-4">
110
+ <h3 class="font-bold text-gray-800">مولانا</h3>
111
+ </div>
112
+ </a>
113
+
114
+ <!-- Poet 4 -->
115
+ <a href="https://ganjoor.net/ferdousi" class="poet-card bg-gray-50 rounded-lg overflow-hidden shadow-md hover:shadow-lg text-center">
116
+ <img src="https://api.ganjoor.net/api/ganjoor/poet/image/ferdousi.gif" alt="فردوسی" class="w-full h-40 object-cover">
117
+ <div class="p-4">
118
+ <h3 class="font-bold text-gray-800">فردوسی</h3>
119
+ </div>
120
+ </a>
121
+
122
+ <!-- Poet 5 -->
123
+ <a href="https://ganjoor.net/khayyam" class="poet-card bg-gray-50 rounded-lg overflow-hidden shadow-md hover:shadow-lg text-center">
124
+ <img src="https://api.ganjoor.net/api/ganjoor/poet/image/khayyam.gif" alt="خیام" class="w-full h-40 object-cover">
125
+ <div class="p-4">
126
+ <h3 class="font-bold text-gray-800">خیام</h3>
127
+ </div>
128
+ </a>
129
+
130
+ <!-- Poet 6 -->
131
+ <a href="https://ganjoor.net/saeb" class="poet-card bg-gray-50 rounded-lg overflow-hidden shadow-md hover:shadow-lg text-center">
132
+ <img src="https://api.ganjoor.net/api/ganjoor/poet/image/saeb.gif" alt="صائب" class="w-full h-40 object-cover">
133
+ <div class="p-4">
134
+ <h3 class="font-bold text-gray-800">صائب</h3>
135
+ </div>
136
+ </a>
137
+ </div>
138
+ </div>
139
+ </section>
140
+
141
+ <!-- Poets by Century -->
142
+ <section class="py-12 bg-gray-50">
143
+ <div class="container mx-auto px-4">
144
+ <h2 class="text-2xl font-bold mb-8 text-gray-800 border-b-2 border-amber-200 pb-2 inline-block">دسته‌بندی بر اساس قرن</h2>
145
+
146
+ <!-- Century Tabs -->
147
+ <div class="flex overflow-x-auto pb-2 mb-8 space-x-2 space-x-reverse">
148
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100 active" data-century="3">قرن سوم</button>
149
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100" data-century="4">قرن چهارم</button>
150
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100" data-century="5">قرن پنجم</button>
151
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100" data-century="6">قرن ششم</button>
152
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100" data-century="7">قرن هفتم</button>
153
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100" data-century="8">قرن هشتم</button>
154
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100" data-century="9">قرن نهم</button>
155
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100" data-century="10">قرن دهم</button>
156
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100" data-century="11">قرن یازدهم</button>
157
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100" data-century="12">قرن دوازدهم</button>
158
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100" data-century="13">قرن سیزدهم</button>
159
+ <button class="century-tab px-4 py-2 rounded-full bg-white shadow-sm hover:bg-amber-100" data-century="14">قرن چهاردهم</button>
160
+ </div>
161
+
162
+ <!-- Poets Grid -->
163
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-6" id="poetsContainer">
164
+ <!-- Poets will be loaded here dynamically -->
165
+
166
+ <!-- Example for 3rd century -->
167
+ <a href="https://ganjoor.net/roodaki" class="poet-card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg text-center">
168
+ <img src="https://api.ganjoor.net/api/ganjoor/poet/image/roodaki.gif" alt="رودکی" class="w-full h-40 object-cover">
169
+ <div class="p-4">
170
+ <h3 class="font-bold text-gray-800">رودکی</h3>
171
+ </div>
172
+ </a>
173
+
174
+ <!-- Example for 4th century -->
175
+ <a href="https://ganjoor.net/babataher" class="poet-card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg text-center">
176
+ <img src="https://api.ganjoor.net/api/ganjoor/poet/image/babataher.gif" alt="باباطاهر" class="w-full h-40 object-cover">
177
+ <div class="p-4">
178
+ <h3 class="font-bold text-gray-800">باباطاهر</h3>
179
+ </div>
180
+ </a>
181
+
182
+ <!-- Example for 14th century -->
183
+ <a href="https://ganjoor.net/parvin" class="poet-card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg text-center">
184
+ <img src="https://api.ganjoor.net/api/ganjoor/poet/image/parvin.gif" alt="پروین اعتصامی" class="w-full h-40 object-cover">
185
+ <div class="p-4">
186
+ <h3 class="font-bold text-gray-800">پروین اعتصامی</h3>
187
+ </div>
188
+ </a>
189
+ </div>
190
+ </div>
191
+ </section>
192
+
193
+ <!-- Map Section -->
194
+ <section class="py-12 bg-white">
195
+ <div class="container mx-auto px-4">
196
+ <div class="flex flex-col md:flex-row items-center">
197
+ <div class="md:w-1/2 mb-6 md:mb-0">
198
+ <h2 class="text-2xl font-bold mb-4 text-gray-800">نقشهٔ خاستگاه سخنوران</h2>
199
+ <p class="text-gray-600 mb-4">گنجور در برگیرنده اشعار شاعران از سراسر ایران بزرگ فرهنگی است. بر روی نقشه کلیک کنید تا شاعران هر منطقه را ببینید.</p>
200
+ <a href="https://ganjoor.net/map" class="text-amber-600 hover:text-amber-700 font-medium">
201
+ مشاهده نقشه کامل <i class="fas fa-arrow-left mr-1"></i>
202
+ </a>
203
+ </div>
204
+ <div class="md:w-1/2">
205
+ <a href="https://ganjoor.net/map" class="block rounded-lg overflow-hidden shadow-lg">
206
+ <img src="https://ganjoor.net/image/map.gif" alt="نقشه خاستگاه شاعران" class="w-full h-auto">
207
+ </a>
208
+ </div>
209
+ </div>
210
+ </div>
211
+ </section>
212
+
213
+ <!-- Features -->
214
+ <section class="py-12 bg-gray-50">
215
+ <div class="container mx-auto px-4">
216
+ <h2 class="text-2xl font-bold mb-8 text-center text-gray-800">امکانات ویژه گنجور</h2>
217
+
218
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
219
+ <div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-200">
220
+ <div class="text-amber-600 text-3xl mb-4">
221
+ <i class="fas fa-random"></i>
222
+ </div>
223
+ <h3 class="text-xl font-bold mb-2 text-gray-800">فال حافظ</h3>
224
+ <p class="text-gray-600">فال حافظ با تفأل به دیوان خواجه شیراز و تفسیر ابیات به صورت آنلاین</p>
225
+ </div>
226
+
227
+ <div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-200">
228
+ <div class="text-amber-600 text-3xl mb-4">
229
+ <i class="fas fa-book-open"></i>
230
+ </div>
231
+ <h3 class="text-xl font-bold mb-2 text-gray-800">کتابخانه گنجور</h3>
232
+ <p class="text-gray-600">مجموعه کامل دیوان شاعران به صورت کتاب الکترونیکی قابل دانلود</p>
233
+ </div>
234
+
235
+ <div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-200">
236
+ <div class="text-amber-600 text-3xl mb-4">
237
+ <i class="fas fa-music"></i>
238
+ </div>
239
+ <h3 class="text-xl font-bold mb-2 text-gray-800">آوای گنجور</h3>
240
+ <p class="text-gray-600">اشعار خوانده شده توسط بهترین هنرمندان و خوشخوانان ایران</p>
241
+ </div>
242
+ </div>
243
+ </div>
244
+ </section>
245
+
246
+ <!-- Footer -->
247
+ <footer class="bg-gray-800 text-white pt-12 pb-6">
248
+ <div class="container mx-auto px-4">
249
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-8">
250
+ <div>
251
+ <h3 class="text-lg font-bold mb-4 border-b border-amber-600 pb-2 inline-block">درباره گنجور</h3>
252
+ <p class="text-gray-300 mb-4">گنجور بزرگترین مجموعه دیجیتال شعر فارسی است که با هدف حفظ و گسترش زبان و ادبیات فارسی ایجاد شده است.</p>
253
+ <div class="flex space-x-4 space-x-reverse">
254
+ <a href="#" class="text-gray-300 hover:text-amber-400"><i class="fab fa-telegram text-xl"></i></a>
255
+ <a href="#" class="text-gray-300 hover:text-amber-400"><i class="fab fa-twitter text-xl"></i></a>
256
+ <a href="#" class="text-gray-300 hover:text-amber-400"><i class="fab fa-instagram text-xl"></i></a>
257
+ </div>
258
+ </div>
259
+
260
+ <div>
261
+ <h3 class="text-lg font-bold mb-4 border-b border-amber-600 pb-2 inline-block">لینک‌های مفید</h3>
262
+ <ul class="space-y-2">
263
+ <li><a href="#" class="text-gray-300 hover:text-amber-400 transition duration-200">بیت تصادفی</a></li>
264
+ <li><a href="#" class="text-gray-300 hover:text-amber-400 transition duration-200">جدول شعر</a></li>
265
+ <li><a href="#" class="text-gray-300 hover:text-amber-400 transition duration-200">فال حافظ</a></li>
266
+ <li><a href="#" class="text-gray-300 hover:text-amber-400 transition duration-200">نمایه موسیقی</a></li>
267
+ </ul>
268
+ </div>
269
+
270
+ <div>
271
+ <h3 class="text-lg font-bold mb-4 border-b border-amber-600 pb-2 inline-block">تماس با ما</h3>
272
+ <ul class="space-y-2">
273
+ <li class="flex items-center text-gray-300"><i class="fas fa-envelope ml-2 text-amber-400"></i> info@ganjoor.net</li>
274
+ <li class="flex items-center text-gray-300"><i class="fas fa-globe ml-2 text-amber-400"></i> https://ganjoor.net</li>
275
+ <li class="flex items-center text-gray-300"><i class="fas fa-map-marker-alt ml-2 text-amber-400"></i> ایران، تهران</li>
276
+ </ul>
277
+ </div>
278
+ </div>
279
+
280
+ <div class="border-t border-gray-700 pt-6 text-center text-gray-400">
281
+ <p>© ۱۴۰۲ گنجور - تمامی حقوق محفوظ است</p>
282
+ </div>
283
+ </div>
284
+ </footer>
285
+
286
+ <!-- Login Modal -->
287
+ <div id="loginModal" class="login-modal fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50">
288
+ <div class="bg-white rounded-lg p-6 w-full max-w-md">
289
+ <div class="flex justify-between items-center mb-4">
290
+ <h3 class="text-xl font-bold text-gray-800">ورود به گنجور</h3>
291
+ <button id="closeModal" class="text-gray-500 hover:text-gray-700">
292
+ <i class="fas fa-times"></i>
293
+ </button>
294
+ </div>
295
+
296
+ <form class="space-y-4">
297
+ <div>
298
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">پست الکترونیکی</label>
299
+ <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-amber-500 focus:border-amber-500">
300
+ </div>
301
+
302
+ <div>
303
+ <label for="password" class="block text-sm font-medium text-gray-700 mb-1">گذرواژه</label>
304
+ <input type="password" id="password" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-amber-500 focus:border-amber-500">
305
+ </div>
306
+
307
+ <div class="text-sm text-gray-600">
308
+ اگر پیش‌تر در <a href="#" class="text-amber-600 hover:text-amber-700">گنجینه</a> یا <a href="#" class="text-amber-600 hover:text-amber-700">پیشخان خوانشگران</a> گنجور نام‌نویسی کرده‌اید می‌توانید با همان اطلاعات کاربری به گنجور وارد شوید.
309
+ </div>
310
+
311
+ <div class="pt-2">
312
+ <button type="submit" class="w-full bg-amber-600 text-white py-2 rounded-md hover:bg-amber-700 transition duration-200">
313
+ ورود به حساب کاربری
314
+ </button>
315
+ </div>
316
+
317
+ <div class="text-center text-sm text-gray-600">
318
+ <span>حساب کاربری ندارید؟ </span>
319
+ <a href="#" class="text-amber-600 hover:text-amber-700 font-medium">نام‌نویسی کنید</a>
320
+ </div>
321
+ </form>
322
+ </div>
323
+ </div>
324
+
325
+ <script>
326
+ // Login Modal
327
+ const loginBtn = document.getElementById('loginBtn');
328
+ const loginModal = document.getElementById('loginModal');
329
+ const closeModal = document.getElementById('closeModal');
330
+
331
+ loginBtn.addEventListener('click', () => {
332
+ loginModal.style.display = 'flex';
333
+ });
334
+
335
+ closeModal.addEventListener('click', () => {
336
+ loginModal.style.display = 'none';
337
+ });
338
+
339
+ // Close modal when clicking outside
340
+ window.addEventListener('click', (e) => {
341
+ if (e.target === loginModal) {
342
+ loginModal.style.display = 'none';
343
+ }
344
+ });
345
+
346
+ // Century Tabs
347
+ const centuryTabs = document.querySelectorAll('.century-tab');
348
+
349
+ centuryTabs.forEach(tab => {
350
+ tab.addEventListener('click', () => {
351
+ centuryTabs.forEach(t => t.classList.remove('active'));
352
+ tab.classList.add('active');
353
+
354
+ // This is where you would load poets for the selected century
355
+ // For demo purposes we're just showing an alert
356
+ alert(`Loading poets for ${tab.textContent}`);
357
+ });
358
+ });
359
+
360
+ // Mobile Menu
361
+ const mobileMenuBtn = document.querySelector('.md\\:hidden');
362
+ // Would implement mobile menu functionality here
363
+ </script>
364
+ <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=CabirPoya/mycode" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
365
+ </html>
prompts.txt ADDED
File without changes