Alan8989 commited on
Commit
27a938a
·
verified ·
1 Parent(s): 9192e0a

дабавь в эту страницу иконку и ссылку на отдельную страницу суперчат, где все общаются но есть лимитированное количество сообщений для каждого согласно их профессиональному рейтингу - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +528 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Socialrating
3
- emoji: 🐨
4
- colorFrom: indigo
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: socialrating
3
+ emoji: 🐳
4
+ colorFrom: purple
5
  colorTo: red
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,528 @@
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="ru">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Social Rating System</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=Roboto:wght@300;400;500;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Roboto', sans-serif;
14
+ background-color: #0f172a;
15
+ }
16
+
17
+ .progress-bar {
18
+ height: 8px;
19
+ border-radius: 4px;
20
+ background-color: #1e293b;
21
+ }
22
+
23
+ .progress-fill {
24
+ height: 100%;
25
+ border-radius: 4px;
26
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
27
+ transition: width 0.5s ease;
28
+ }
29
+
30
+ .skill-badge {
31
+ transition: all 0.3s ease;
32
+ }
33
+
34
+ .skill-badge:hover {
35
+ transform: translateY(-2px);
36
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
37
+ }
38
+
39
+ .rating-change {
40
+ animation: pulse 2s infinite;
41
+ }
42
+
43
+ @keyframes pulse {
44
+ 0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
45
+ 70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
46
+ 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
47
+ }
48
+ </style>
49
+ </head>
50
+ <body class="text-gray-200">
51
+ <!-- Header -->
52
+ <header class="bg-gray-900 border-b border-gray-800 py-4 px-6 sticky top-0 z-50">
53
+ <div class="container mx-auto flex justify-between items-center">
54
+ <div class="flex items-center space-x-2">
55
+ <i class="fas fa-star text-blue-500 text-2xl"></i>
56
+ <h1 class="text-xl font-bold">SocialRating</h1>
57
+ </div>
58
+ <nav class="hidden md:flex space-x-6">
59
+ <a href="#" class="hover:text-blue-400 transition">Главная</a>
60
+ <a href="#" class="hover:text-blue-400 transition">Рейтинги</a>
61
+ <a href="#" class="hover:text-blue-400 transition">Сообщество</a>
62
+ <a href="#" class="hover:text-blue-400 transition">Новости</a>
63
+ <a href="/superchat" class="hover:text-blue-400 transition flex items-center space-x-1">
64
+ <i class="fas fa-comment-dots text-blue-500"></i>
65
+ <span>SuperChat</span>
66
+ </a>
67
+ </nav>
68
+ <div class="flex items-center space-x-4">
69
+ <button class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-md transition">
70
+ Войти
71
+ </button>
72
+ <button class="md:hidden">
73
+ <i class="fas fa-bars text-xl"></i>
74
+ </button>
75
+ </div>
76
+ </div>
77
+ </header>
78
+
79
+ <main class="container mx-auto px-4 py-8">
80
+ <!-- Profile Section -->
81
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
82
+ <!-- Left Column - Profile Card -->
83
+ <div class="lg:col-span-1">
84
+ <div class="bg-gray-800 rounded-xl shadow-lg overflow-hidden border border-gray-700">
85
+ <!-- Profile Header -->
86
+ <div class="relative">
87
+ <div class="h-32 bg-gradient-to-r from-blue-900 to-purple-900"></div>
88
+ <div class="absolute -bottom-16 left-6">
89
+ <div class="h-32 w-32 rounded-full border-4 border-gray-800 overflow-hidden">
90
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Profile" class="h-full w-full object-cover">
91
+ </div>
92
+ </div>
93
+ </div>
94
+
95
+ <!-- Profile Info -->
96
+ <div class="pt-20 px-6 pb-6">
97
+ <div class="flex justify-between items-start">
98
+ <div>
99
+ <h2 class="text-2xl font-bold">Иван Петров</h2>
100
+ <p class="text-gray-400">ID: #SR-8472</p>
101
+ </div>
102
+ <div class="bg-gray-700 px-3 py-1 rounded-full flex items-center space-x-1">
103
+ <i class="fas fa-crown text-yellow-400"></i>
104
+ <span class="font-medium">Gold Tier</span>
105
+ </div>
106
+ </div>
107
+
108
+ <!-- Rating -->
109
+ <div class="mt-6 bg-gray-900 rounded-lg p-4 border border-gray-700">
110
+ <div class="flex justify-between items-center mb-2">
111
+ <span class="text-gray-400">Социальный рейтинг</span>
112
+ <span class="text-blue-400 font-bold">+12.5%</span>
113
+ </div>
114
+ <div class="flex items-center space-x-2">
115
+ <div class="text-3xl font-bold">8.7</div>
116
+ <div class="flex">
117
+ <i class="fas fa-star text-yellow-400"></i>
118
+ <i class="fas fa-star text-yellow-400"></i>
119
+ <i class="fas fa-star text-yellow-400"></i>
120
+ <i class="fas fa-star text-yellow-400"></i>
121
+ <i class="fas fa-star-half-alt text-yellow-400"></i>
122
+ </div>
123
+ </div>
124
+ <div class="progress-bar mt-2">
125
+ <div class="progress-fill" style="width: 87%"></div>
126
+ </div>
127
+ </div>
128
+
129
+ <!-- Basic Info -->
130
+ <div class="mt-6 space-y-4">
131
+ <div class="flex items-center space-x-3">
132
+ <i class="fas fa-birthday-cake text-blue-400 w-5"></i>
133
+ <span>28 лет</span>
134
+ </div>
135
+ <div class="flex items-center space-x-3">
136
+ <i class="fas fa-venus-mars text-blue-400 w-5"></i>
137
+ <span>Мужской</span>
138
+ </div>
139
+ <div class="flex items-center space-x-3">
140
+ <i class="fas fa-map-marker-alt text-blue-400 w-5"></i>
141
+ <span>Москва, Россия</span>
142
+ </div>
143
+ <div class="flex items-center space-x-3">
144
+ <i class="fas fa-briefcase text-blue-400 w-5"></i>
145
+ <span>Программист</span>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Health Status -->
150
+ <div class="mt-6 bg-gray-900 rounded-lg p-4 border border-gray-700">
151
+ <div class="flex justify-between items-center mb-2">
152
+ <span class="text-gray-400">Уровень здоровья</span>
153
+ <span class="text-green-400 font-bold">Хорошее</span>
154
+ </div>
155
+ <div class="progress-bar mt-2">
156
+ <div class="progress-fill" style="width: 78%; background: linear-gradient(90deg, #10b981, #3b82f6)"></div>
157
+ </div>
158
+ <div class="grid grid-cols-2 gap-4 mt-4">
159
+ <div>
160
+ <div class="text-sm text-gray-400">Физическое</div>
161
+ <div class="progress-bar mt-1">
162
+ <div class="progress-fill" style="width: 85%"></div>
163
+ </div>
164
+ </div>
165
+ <div>
166
+ <div class="text-sm text-gray-400">Психическое</div>
167
+ <div class="progress-bar mt-1">
168
+ <div class="progress-fill" style="width: 72%"></div>
169
+ </div>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Quick Actions -->
177
+ <div class="mt-6 bg-gray-800 rounded-xl p-6 border border-gray-700">
178
+ <h3 class="text-lg font-bold mb-4">Быстрые действия</h3>
179
+ <div class="grid grid-cols-2 gap-3">
180
+ <button class="bg-blue-600 hover:bg-blue-700 py-2 px-3 rounded-md text-sm transition flex items-center justify-center space-x-2">
181
+ <i class="fas fa-plus"></i>
182
+ <span>Добавить</span>
183
+ </button>
184
+ <button class="bg-gray-700 hover:bg-gray-600 py-2 px-3 rounded-md text-sm transition flex items-center justify-center space-x-2">
185
+ <i class="fas fa-share-alt"></i>
186
+ <span>Поделиться</span>
187
+ </button>
188
+ <button class="bg-gray-700 hover:bg-gray-600 py-2 px-3 rounded-md text-sm transition flex items-center justify-center space-x-2">
189
+ <i class="fas fa-chart-line"></i>
190
+ <span>Статистика</span>
191
+ </button>
192
+ <button class="bg-gray-700 hover:bg-gray-600 py-2 px-3 rounded-md text-sm transition flex items-center justify-center space-x-2">
193
+ <i class="fas fa-cog"></i>
194
+ <span>Настройки</span>
195
+ </button>
196
+ <button class="bg-purple-600 hover:bg-purple-700 py-2 px-3 rounded-md text-sm transition flex items-center justify-center space-x-2">
197
+ <i class="fas fa-comment-dots"></i>
198
+ <span>SuperChat</span>
199
+ </button>
200
+ </div>
201
+ </div>
202
+ </div>
203
+
204
+ <!-- Right Column - Main Content -->
205
+ <div class="lg:col-span-2 space-y-6">
206
+ <!-- Rating Overview -->
207
+ <div class="bg-gray-800 rounded-xl p-6 border border-gray-700">
208
+ <div class="flex justify-between items-center mb-6">
209
+ <h2 class="text-xl font-bold">Обзор рейтинга</h2>
210
+ <div class="flex items-center space-x-2">
211
+ <span class="text-sm text-gray-400">Обновлено сегодня</span>
212
+ <button class="text-blue-400 hover:text-blue-300">
213
+ <i class="fas fa-sync-alt"></i>
214
+ </button>
215
+ </div>
216
+ </div>
217
+
218
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-4">
219
+ <div class="bg-gray-900 p-4 rounded-lg border border-gray-700">
220
+ <div class="text-gray-400 text-sm">Профессиональный</div>
221
+ <div class="text-2xl font-bold mt-1">9.2</div>
222
+ <div class="progress-bar mt-2">
223
+ <div class="progress-fill" style="width: 92%"></div>
224
+ </div>
225
+ </div>
226
+ <div class="bg-gray-900 p-4 rounded-lg border border-gray-700">
227
+ <div class="text-gray-400 text-sm">Социальный</div>
228
+ <div class="text-2xl font-bold mt-1">8.1</div>
229
+ <div class="progress-bar mt-2">
230
+ <div class="progress-fill" style="width: 81%"></div>
231
+ </div>
232
+ </div>
233
+ <div class="bg-gray-900 p-4 rounded-lg border border-gray-700">
234
+ <div class="text-gray-400 text-sm">Гражданский</div>
235
+ <div class="text-2xl font-bold mt-1">8.8</div>
236
+ <div class="progress-bar mt-2">
237
+ <div class="progress-fill" style="width: 88%"></div>
238
+ </div>
239
+ </div>
240
+ </div>
241
+
242
+ <div class="mt-6">
243
+ <div class="flex justify-between items-center mb-2">
244
+ <span class="text-gray-400">Прогресс за месяц</span>
245
+ <span class="text-green-400 font-bold">+2.3%</span>
246
+ </div>
247
+ <div class="h-40">
248
+ <!-- Здесь будет график, но для простоты используем placeholder -->
249
+ <div class="bg-gray-900 rounded-lg h-full flex items-center justify-center text-gray-500">
250
+ <i class="fas fa-chart-line text-3xl"></i>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ </div>
255
+
256
+ <!-- Skills Section -->
257
+ <div class="bg-gray-800 rounded-xl p-6 border border-gray-700">
258
+ <div class="flex justify-between items-center mb-6">
259
+ <h2 class="text-xl font-bold">Навыки и компетенции</h2>
260
+ <button class="text-blue-400 hover:text-blue-300 text-sm flex items-center space-x-1">
261
+ <i class="fas fa-plus"></i>
262
+ <span>Добавить</span>
263
+ </button>
264
+ </div>
265
+
266
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-3">
267
+ <div class="skill-badge bg-gray-900 hover:bg-gray-700 p-3 rounded-lg border border-gray-700">
268
+ <div class="flex justify-between items-start">
269
+ <div>
270
+ <div class="font-medium">Программирование</div>
271
+ <div class="text-sm text-gray-400 mt-1">JavaScript, Python</div>
272
+ </div>
273
+ <div class="text-yellow-400">
274
+ <i class="fas fa-star"></i>
275
+ <span class="text-white">4.8</span>
276
+ </div>
277
+ </div>
278
+ <div class="progress-bar mt-2">
279
+ <div class="progress-fill" style="width: 96%"></div>
280
+ </div>
281
+ </div>
282
+
283
+ <div class="skill-badge bg-gray-900 hover:bg-gray-700 p-3 rounded-lg border border-gray-700">
284
+ <div class="flex justify-between items-start">
285
+ <div>
286
+ <div class="font-medium">Иностранные языки</div>
287
+ <div class="text-sm text-gray-400 mt-1">Английский (C1)</div>
288
+ </div>
289
+ <div class="text-yellow-400">
290
+ <i class="fas fa-star"></i>
291
+ <span class="text-white">4.5</span>
292
+ </div>
293
+ </div>
294
+ <div class="progress-bar mt-2">
295
+ <div class="progress-fill" style="width: 90%"></div>
296
+ </div>
297
+ </div>
298
+
299
+ <div class="skill-badge bg-gray-900 hover:bg-gray-700 p-3 rounded-lg border border-gray-700">
300
+ <div class="flex justify-between items-start">
301
+ <div>
302
+ <div class="font-medium">Лидерство</div>
303
+ <div class="text-sm text-gray-400 mt-1">Управление командой</div>
304
+ </div>
305
+ <div class="text-yellow-400">
306
+ <i class="fas fa-star"></i>
307
+ <span class="text-white">4.2</span>
308
+ </div>
309
+ </div>
310
+ <div class="progress-bar mt-2">
311
+ <div class="progress-fill" style="width: 84%"></div>
312
+ </div>
313
+ </div>
314
+
315
+ <div class="skill-badge bg-gray-900 hover:bg-gray-700 p-3 rounded-lg border border-gray-700">
316
+ <div class="flex justify-between items-start">
317
+ <div>
318
+ <div class="font-medium">Финансовая грамотность</div>
319
+ <div class="text-sm text-gray-400 mt-1">Инвестиции, бюджет</div>
320
+ </div>
321
+ <div class="text-yellow-400">
322
+ <i class="fas fa-star"></i>
323
+ <span class="text-white">3.9</span>
324
+ </div>
325
+ </div>
326
+ <div class="progress-bar mt-2">
327
+ <div class="progress-fill" style="width: 78%"></div>
328
+ </div>
329
+ </div>
330
+
331
+ <div class="skill-badge bg-gray-900 hover:bg-gray-700 p-3 rounded-lg border border-gray-700">
332
+ <div class="flex justify-between items-start">
333
+ <div>
334
+ <div class="font-medium">Спорт</div>
335
+ <div class="text-sm text-gray-400 mt-1">Бег, плавание</div>
336
+ </div>
337
+ <div class="text-yellow-400">
338
+ <i class="fas fa-star"></i>
339
+ <span class="text-white">3.7</span>
340
+ </div>
341
+ </div>
342
+ <div class="progress-bar mt-2">
343
+ <div class="progress-fill" style="width: 74%"></div>
344
+ </div>
345
+ </div>
346
+
347
+ <div class="skill-badge bg-gray-900 hover:bg-gray-700 p-3 rounded-lg border border-gray-700">
348
+ <div class="flex justify-between items-start">
349
+ <div>
350
+ <div class="font-medium">Волонтерство</div>
351
+ <div class="text-sm text-gray-400 mt-1">30 часов/мес</div>
352
+ </div>
353
+ <div class="text-yellow-400">
354
+ <i class="fas fa-star"></i>
355
+ <span class="text-white">4.0</span>
356
+ </div>
357
+ </div>
358
+ <div class="progress-bar mt-2">
359
+ <div class="progress-fill" style="width: 80%"></div>
360
+ </div>
361
+ </div>
362
+ </div>
363
+ </div>
364
+
365
+ <!-- Recent Activity -->
366
+ <div class="bg-gray-800 rounded-xl p-6 border border-gray-700">
367
+ <div class="flex justify-between items-center mb-6">
368
+ <h2 class="text-xl font-bold">Последняя активность</h2>
369
+ <button class="text-blue-400 hover:text-blue-300 text-sm">Смотреть все</button>
370
+ </div>
371
+
372
+ <div class="space-y-4">
373
+ <div class="flex items-start space-x-3">
374
+ <div class="bg-blue-900 text-blue-300 p-2 rounded-full">
375
+ <i class="fas fa-medal"></i>
376
+ </div>
377
+ <div class="flex-1">
378
+ <div class="font-medium">Получен новый уровень!</div>
379
+ <div class="text-sm text-gray-400">Gold Tier достигнут благодаря вашей активности</div>
380
+ <div class="text-xs text-gray-500 mt-1">2 часа назад</div>
381
+ </div>
382
+ <div class="text-green-400 font-bold">+5.0%</div>
383
+ </div>
384
+
385
+ <div class="flex items-start space-x-3">
386
+ <div class="bg-purple-900 text-purple-300 p-2 rounded-full">
387
+ <i class="fas fa-code"></i>
388
+ </div>
389
+ <div class="flex-1">
390
+ <div class="font-medium">Навык обновлен</div>
391
+ <div class="text-sm text-gray-400">Программирование: +0.3 к рейтингу</div>
392
+ <div class="text-xs text-gray-500 mt-1">5 часов назад</div>
393
+ </div>
394
+ <div class="text-green-400 font-bold">+0.3%</div>
395
+ </div>
396
+
397
+ <div class="flex items-start space-x-3">
398
+ <div class="bg-green-900 text-green-300 p-2 rounded-full">
399
+ <i class="fas fa-heart"></i>
400
+ </div>
401
+ <div class="flex-1">
402
+ <div class="font-medium">Медицинский чек-ап</div>
403
+ <div class="text-sm text-gray-400">Годовой осмотр завершен, здоровье в норме</div>
404
+ <div class="text-xs text-gray-500 mt-1">Вчера</div>
405
+ </div>
406
+ <div class="text-green-400 font-bold">+1.2%</div>
407
+ </div>
408
+
409
+ <div class="flex items-start space-x-3">
410
+ <div class="bg-yellow-900 text-yellow-300 p-2 rounded-full">
411
+ <i class="fas fa-users"></i>
412
+ </div>
413
+ <div class="flex-1">
414
+ <div class="font-medium">Социальное взаимодействие</div>
415
+ <div class="text-sm text-gray-400">Участие в общественном мероприятии</div>
416
+ <div class="text-xs text-gray-500 mt-1">2 дня назад</div>
417
+ </div>
418
+ <div class="text-green-400 font-bold">+0.8%</div>
419
+ </div>
420
+ </div>
421
+ </div>
422
+ </div>
423
+ </div>
424
+ </main>
425
+
426
+ <!-- Footer -->
427
+ <footer class="bg-gray-900 border-t border-gray-800 py-8 px-6 mt-12">
428
+ <div class="container mx-auto">
429
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
430
+ <div>
431
+ <div class="flex items-center space-x-2 mb-4">
432
+ <i class="fas fa-star text-blue-500 text-2xl"></i>
433
+ <h3 class="text-xl font-bold">SocialRating</h3>
434
+ </div>
435
+ <p class="text-gray-400 text-sm">
436
+ Система социального рейтинга для оценки гражданских, профессиональных и социальных достижений.
437
+ </p>
438
+ </div>
439
+ <div>
440
+ <h4 class="text-lg font-medium mb-4">Навигация</h4>
441
+ <ul class="space-y-2 text-gray-400">
442
+ <li><a href="#" class="hover:text-blue-400 transition">Главная</a></li>
443
+ <li><a href="#" class="hover:text-blue-400 transition">О системе</a></li>
444
+ <li><a href="#" class="hover:text-blue-400 transition">Рейтинги</a></li>
445
+ <li><a href="#" class="hover:text-blue-400 transition">FAQ</a></li>
446
+ <li><a href="/superchat" class="hover:text-blue-400 transition flex items-center space-x-2">
447
+ <i class="fas fa-comment-dots text-blue-500"></i>
448
+ <span>SuperChat</span>
449
+ </a></li>
450
+ </ul>
451
+ </div>
452
+ <div>
453
+ <h4 class="text-lg font-medium mb-4">Ресурсы</h4>
454
+ <ul class="space-y-2 text-gray-400">
455
+ <li><a href="#" class="hover:text-blue-400 transition">Блог</a></li>
456
+ <li><a href="#" class="hover:text-blue-400 transition">Документация</a></li>
457
+ <li><a href="#" class="hover:text-blue-400 transition">API</a></li>
458
+ <li><a href="#" class="hover:text-blue-400 transition">Статус</a></li>
459
+ </ul>
460
+ </div>
461
+ <div>
462
+ <h4 class="text-lg font-medium mb-4">Контакты</h4>
463
+ <ul class="space-y-2 text-gray-400">
464
+ <li class="flex items-center space-x-2">
465
+ <i class="fas fa-envelope w-4"></i>
466
+ <span>[email protected]</span>
467
+ </li>
468
+ <li class="flex items-center space-x-2">
469
+ <i class="fas fa-phone-alt w-4"></i>
470
+ <span>+7 (495) 123-45-67</span>
471
+ </li>
472
+ <li class="flex items-center space-x-2">
473
+ <i class="fas fa-map-marker-alt w-4"></i>
474
+ <span>Москва, ул. Примерная, 123</span>
475
+ </li>
476
+ </ul>
477
+ </div>
478
+ </div>
479
+ <div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
480
+ <div class="text-gray-500 text-sm mb-4 md:mb-0">
481
+ © 2023 SocialRating System. Все права защищены.
482
+ </div>
483
+ <div class="flex space-x-4">
484
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">
485
+ <i class="fab fa-facebook-f"></i>
486
+ </a>
487
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">
488
+ <i class="fab fa-twitter"></i>
489
+ </a>
490
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">
491
+ <i class="fab fa-instagram"></i>
492
+ </a>
493
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">
494
+ <i class="fab fa-linkedin-in"></i>
495
+ </a>
496
+ </div>
497
+ </div>
498
+ </div>
499
+ </footer>
500
+
501
+ <script>
502
+ // Анимация для прогресс-баров при загрузке страницы
503
+ document.addEventListener('DOMContentLoaded', function() {
504
+ const progressBars = document.querySelectorAll('.progress-fill');
505
+
506
+ progressBars.forEach(bar => {
507
+ const targetWidth = bar.style.width;
508
+ bar.style.width = '0';
509
+ setTimeout(() => {
510
+ bar.style.width = targetWidth;
511
+ }, 100);
512
+ });
513
+
514
+ // Имитация изменения рейтинга
515
+ setTimeout(() => {
516
+ const ratingChange = document.createElement('div');
517
+ ratingChange.className = 'absolute -top-2 -right-2 bg-blue-600 text-white text-xs font-bold rounded-full h-6 w-6 flex items-center justify-center rating-change';
518
+ ratingChange.textContent = '+1';
519
+ document.querySelector('.relative').appendChild(ratingChange);
520
+
521
+ setTimeout(() => {
522
+ ratingChange.remove();
523
+ }, 3000);
524
+ }, 2000);
525
+ });
526
+ </script>
527
+ <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=Alan8989/socialrating" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
528
+ </html>