timoon811 commited on
Commit
b81eb6a
·
verified ·
1 Parent(s): c75a887

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +346 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Appsthema41321
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: appsthema41321
3
+ emoji: 🐳
4
  colorFrom: red
5
+ colorTo: gray
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,346 @@
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>App Rental Services | Android · iOS · PWA</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=Inter:wght@900&family=JetBrains+Mono:wght@400;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ background-color: #000;
15
+ color: white;
16
+ overflow-x: hidden;
17
+ }
18
+
19
+ .tech-bg {
20
+ background:
21
+ radial-gradient(circle at 70% 30%, rgba(56, 182, 255, 0.1) 0%, transparent 30%),
22
+ radial-gradient(circle at 30% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 30%),
23
+ linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,1));
24
+ position: relative;
25
+ }
26
+
27
+ .phone-mockup {
28
+ perspective: 1000px;
29
+ transform-style: preserve-3d;
30
+ }
31
+
32
+ .phone-screen {
33
+ transform: rotateY(-15deg) rotateX(5deg);
34
+ box-shadow: 0 20px 50px rgba(56, 182, 255, 0.3);
35
+ border-radius: 30px;
36
+ overflow: hidden;
37
+ }
38
+
39
+ .app-icon {
40
+ transition: all 0.3s ease;
41
+ filter: drop-shadow(0 0 10px rgba(56, 182, 255, 0.5));
42
+ }
43
+
44
+ .app-icon:hover {
45
+ transform: translateY(-5px) scale(1.05);
46
+ filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.7));
47
+ }
48
+
49
+ .neon-text {
50
+ text-shadow: 0 0 10px rgba(56, 182, 255, 0.7),
51
+ 0 0 20px rgba(138, 43, 226, 0.5);
52
+ }
53
+
54
+ .neon-border {
55
+ box-shadow: 0 0 10px rgba(56, 182, 255, 0.7),
56
+ 0 0 20px rgba(138, 43, 226, 0.5);
57
+ }
58
+
59
+ .code-snippet {
60
+ font-family: 'JetBrains Mono', monospace;
61
+ background: rgba(20, 20, 30, 0.7);
62
+ border-left: 3px solid #38b6ff;
63
+ }
64
+
65
+ .floating {
66
+ animation: floating 6s ease-in-out infinite;
67
+ }
68
+
69
+ .floating-delay-1 {
70
+ animation-delay: 1s;
71
+ }
72
+
73
+ .floating-delay-2 {
74
+ animation-delay: 2s;
75
+ }
76
+
77
+ @keyframes floating {
78
+ 0% { transform: translateY(0px); }
79
+ 50% { transform: translateY(-15px); }
80
+ 100% { transform: translateY(0px); }
81
+ }
82
+
83
+ .pulse {
84
+ animation: pulse 2s infinite;
85
+ }
86
+
87
+ @keyframes pulse {
88
+ 0% { opacity: 0.7; }
89
+ 50% { opacity: 1; }
90
+ 100% { opacity: 0.7; }
91
+ }
92
+ </style>
93
+ </head>
94
+ <body class="tech-bg min-h-screen">
95
+ <div class="absolute inset-0 overflow-hidden opacity-30">
96
+ <!-- Abstract background elements -->
97
+ <div class="absolute top-10 left-10 w-20 h-20 rounded-full bg-purple-500 blur-3xl opacity-20"></div>
98
+ <div class="absolute bottom-20 right-20 w-32 h-32 rounded-full bg-cyan-500 blur-3xl opacity-20"></div>
99
+ <div class="absolute top-1/3 right-1/4 w-24 h-24 rounded-full bg-blue-500 blur-3xl opacity-20"></div>
100
+
101
+ <!-- App icons floating around -->
102
+ <div class="absolute top-1/4 left-1/5 floating">
103
+ <div class="w-12 h-12 bg-white rounded-xl flex items-center justify-center shadow-lg">
104
+ <i class="fab fa-android text-2xl text-green-500"></i>
105
+ </div>
106
+ </div>
107
+
108
+ <div class="absolute top-1/3 right-1/5 floating floating-delay-1">
109
+ <div class="w-12 h-12 bg-white rounded-xl flex items-center justify-center shadow-lg">
110
+ <i class="fab fa-apple text-2xl text-gray-800"></i>
111
+ </div>
112
+ </div>
113
+
114
+ <div class="absolute bottom-1/4 left-1/3 floating floating-delay-2">
115
+ <div class="w-12 h-12 bg-white rounded-xl flex items-center justify-center shadow-lg">
116
+ <i class="fas fa-globe text-2xl text-blue-500"></i>
117
+ </div>
118
+ </div>
119
+
120
+ <!-- Code elements floating -->
121
+ <div class="absolute top-1/5 right-1/3 text-xs code-snippet p-2 rounded floating">
122
+ <span class="text-purple-400">const</span> <span class="text-blue-400">app</span> = <span class="text-cyan-400">await</span> <span class="text-yellow-300">rentApp</span>({<br>
123
+ &nbsp;&nbsp;<span class="text-green-400">platform</span>: <span class="text-orange-300">'android'</span>,<br>
124
+ &nbsp;&nbsp;<span class="text-green-400">duration</span>: <span class="text-orange-300">'30d'</span><br>
125
+ });
126
+ </div>
127
+
128
+ <div class="absolute bottom-1/5 left-1/4 text-xs code-snippet p-2 rounded floating floating-delay-1">
129
+ <span class="text-purple-400">import</span> <span class="text-blue-400">PWA</span> <span class="text-purple-400">from</span> <span class="text-orange-300">'@arbitrage/core'</span>;<br>
130
+ <span class="text-cyan-400">new</span> <span class="text-yellow-300">PWA</span>().<span class="text-blue-400">install</span>();
131
+ </div>
132
+ </div>
133
+
134
+ <div class="container mx-auto px-4 py-16 md:py-24 relative z-10">
135
+ <div class="flex flex-col md:flex-row items-center">
136
+ <!-- Left side with text -->
137
+ <div class="md:w-1/2 mb-12 md:mb-0">
138
+ <div class="text-cyan-400 font-bold mb-2 text-lg md:text-xl">Сервисы аренды приложений</div>
139
+ <h1 class="text-4xl md:text-6xl font-bold mb-4 neon-text">
140
+ Android · iOS · PWA
141
+ </h1>
142
+ <h2 class="text-2xl md:text-4xl font-bold mb-8 text-white">
143
+ Аренда приложений для арбитража
144
+ </h2>
145
+
146
+ <div class="mb-8 max-w-md">
147
+ <p class="text-gray-300 mb-4">
148
+ Получите готовые приложения под ключ для вашего арбитража трафика. Быстро. Надёжно. Без разработки.
149
+ </p>
150
+
151
+ <div class="flex flex-wrap gap-2 mb-6">
152
+ <div class="px-3 py-1 bg-gray-800 rounded-full text-xs flex items-center">
153
+ <span class="w-2 h-2 bg-green-500 rounded-full mr-2"></span>
154
+ .apk
155
+ </div>
156
+ <div class="px-3 py-1 bg-gray-800 rounded-full text-xs flex items-center">
157
+ <span class="w-2 h-2 bg-gray-400 rounded-full mr-2"></span>
158
+ .ipa
159
+ </div>
160
+ <div class="px-3 py-1 bg-gray-800 rounded-full text-xs flex items-center">
161
+ <span class="w-2 h-2 bg-blue-500 rounded-full mr-2"></span>
162
+ PWA
163
+ </div>
164
+ <div class="px-3 py-1 bg-gray-800 rounded-full text-xs flex items-center">
165
+ <i class="fas fa-bolt text-yellow-400 mr-1"></i>
166
+ Быстрый запуск
167
+ </div>
168
+ </div>
169
+ </div>
170
+ </div>
171
+
172
+ <!-- Right side with phone mockup and app showcase -->
173
+ <div class="md:w-1/2 flex justify-center">
174
+ <div class="phone-mockup relative">
175
+ <div class="phone-screen w-64 h-auto bg-gray-900 border-8 border-gray-800 relative">
176
+ <!-- Phone status bar -->
177
+ <div class="bg-gray-800 p-2 flex justify-between items-center text-xs">
178
+ <div class="text-white">9:41</div>
179
+ <div class="flex space-x-1">
180
+ <i class="fas fa-signal text-white"></i>
181
+ <i class="fas fa-wifi text-white"></i>
182
+ <i class="fas fa-battery-three-quarters text-white"></i>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- App showcase inside phone -->
187
+ <div class="p-4">
188
+ <div class="flex justify-between items-center mb-4">
189
+ <h3 class="text-white font-bold">App Rental</h3>
190
+ <div class="flex space-x-2">
191
+ <div class="w-6 h-6 bg-blue-500 rounded-full flex items-center justify-center">
192
+ <i class="fas fa-download text-white text-xs"></i>
193
+ </div>
194
+ <div class="w-6 h-6 bg-purple-500 rounded-full flex items-center justify-center">
195
+ <i class="fas fa-share-alt text-white text-xs"></i>
196
+ </div>
197
+ </div>
198
+ </div>
199
+
200
+ <!-- App icons grid -->
201
+ <div class="grid grid-cols-3 gap-4 mb-4">
202
+ <div class="app-icon bg-blue-500 rounded-xl p-3 flex flex-col items-center">
203
+ <i class="fas fa-shopping-cart text-white text-2xl mb-1"></i>
204
+ <span class="text-white text-xs">E-commerce</span>
205
+ </div>
206
+ <div class="app-icon bg-purple-500 rounded-xl p-3 flex flex-col items-center">
207
+ <i class="fas fa-gamepad text-white text-2xl mb-1"></i>
208
+ <span class="text-white text-xs">Games</span>
209
+ </div>
210
+ <div class="app-icon bg-green-500 rounded-xl p-3 flex flex-col items-center">
211
+ <i class="fas fa-video text-white text-2xl mb-1"></i>
212
+ <span class="text-white text-xs">Video</span>
213
+ </div>
214
+ <div class="app-icon bg-yellow-500 rounded-xl p-3 flex flex-col items-center">
215
+ <i class="fas fa-newspaper text-white text-2xl mb-1"></i>
216
+ <span class="text-white text-xs">News</span>
217
+ </div>
218
+ <div class="app-icon bg-red-500 rounded-xl p-3 flex flex-col items-center">
219
+ <i class="fas fa-music text-white text-2xl mb-1"></i>
220
+ <span class="text-white text-xs">Music</span>
221
+ </div>
222
+ <div class="app-icon bg-cyan-500 rounded-xl p-3 flex flex-col items-center">
223
+ <i class="fas fa-chart-line text-white text-2xl mb-1"></i>
224
+ <span class="text-white text-xs">Analytics</span>
225
+ </div>
226
+ </div>
227
+
228
+ <!-- App details -->
229
+ <div class="bg-gray-800 rounded-lg p-3 mb-3">
230
+ <div class="flex justify-between items-center mb-2">
231
+ <span class="text-white text-sm font-bold">Premium App</span>
232
+ <span class="text-green-400 text-xs">Доступно</span>
233
+ </div>
234
+ <div class="flex justify-between items-center text-xs text-gray-300">
235
+ <span>Android/iOS/PWA</span>
236
+ <span class="flex items-center">
237
+ <i class="fas fa-clock mr-1"></i> 30 дней
238
+ </span>
239
+ </div>
240
+ </div>
241
+ </div>
242
+ </div>
243
+
244
+ <!-- Floating elements around phone -->
245
+ <div class="absolute -top-8 -left-8 w-16 h-16 bg-purple-500 rounded-full blur-xl opacity-30"></div>
246
+ <div class="absolute -bottom-8 -right-8 w-20 h-20 bg-cyan-500 rounded-full blur-xl opacity-30"></div>
247
+
248
+ <div class="absolute -top-12 right-4">
249
+ <div class="w-10 h-10 bg-white rounded-lg flex items-center justify-center shadow-lg rotate-12">
250
+ <i class="fab fa-android text-xl text-green-500"></i>
251
+ </div>
252
+ </div>
253
+
254
+ <div class="absolute -bottom-12 left-4">
255
+ <div class="w-10 h-10 bg-white rounded-lg flex items-center justify-center shadow-lg -rotate-12">
256
+ <i class="fab fa-apple text-xl text-gray-800"></i>
257
+ </div>
258
+ </div>
259
+
260
+ <div class="absolute top-1/4 -right-16">
261
+ <div class="w-12 h-12 bg-white rounded-lg flex items-center justify-center shadow-lg">
262
+ <i class="fas fa-window-restore text-xl text-blue-500"></i>
263
+ </div>
264
+ </div>
265
+ </div>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- Tech process flow -->
270
+ <div class="mt-24 md:mt-32 max-w-4xl mx-auto">
271
+ <h3 class="text-2xl md:text-3xl font-bold text-center mb-12 neon-text">Как это работает</h3>
272
+
273
+ <div class="relative">
274
+ <!-- Connection lines -->
275
+ <div class="hidden md:block absolute top-1/2 left-0 right-0 h-1 bg-gradient-to-r from-cyan-500 via-purple-500 to-cyan-500 opacity-30"></div>
276
+
277
+ <div class="grid md:grid-cols-3 gap-8 md:gap-4 relative z-10">
278
+ <div class="bg-gray-900 bg-opacity-70 rounded-xl p-6 border border-gray-800 hover:border-cyan-400 transition-all duration-300">
279
+ <div class="w-16 h-16 bg-cyan-900 bg-opacity-50 rounded-full flex items-center justify-center mb-4 mx-auto neon-border">
280
+ <i class="fas fa-mobile-alt text-2xl text-cyan-400"></i>
281
+ </div>
282
+ <h4 class="text-xl font-bold text-center mb-2">Выбираете приложение</h4>
283
+ <p class="text-gray-300 text-center text-sm">
284
+ Подберите готовое решение из каталога под вашу нишу арбитража
285
+ </p>
286
+ </div>
287
+
288
+ <div class="bg-gray-900 bg-opacity-70 rounded-xl p-6 border border-gray-800 hover:border-purple-400 transition-all duration-300">
289
+ <div class="w-16 h-16 bg-purple-900 bg-opacity-50 rounded-full flex items-center justify-center mb-4 mx-auto neon-border">
290
+ <i class="fas fa-handshake text-2xl text-purple-400"></i>
291
+ </div>
292
+ <h4 class="text-xl font-bold text-center mb-2">Оформляете аренду</h4>
293
+ <p class="text-gray-300 text-center text-sm">
294
+ Получаете доступ к приложению на выбранный срок без лишних сложностей
295
+ </p>
296
+ </div>
297
+
298
+ <div class="bg-gray-900 bg-opacity-70 rounded-xl p-6 border border-gray-800 hover:border-blue-400 transition-all duration-300">
299
+ <div class="w-16 h-16 bg-blue-900 bg-opacity-50 rounded-full flex items-center justify-center mb-4 mx-auto neon-border">
300
+ <i class="fas fa-rocket text-2xl text-blue-400"></i>
301
+ </div>
302
+ <h4 class="text-xl font-bold text-center mb-2">Запускаете арбитраж</h4>
303
+ <p class="text-gray-300 text-center text-sm">
304
+ Начинаете получать трафик сразу после подключения
305
+ </p>
306
+ </div>
307
+ </div>
308
+ </div>
309
+ </div>
310
+ </div>
311
+
312
+ <!-- Floating tech elements -->
313
+ <div class="hidden md:block">
314
+ <div class="absolute bottom-20 left-20 w-8 h-8 bg-cyan-400 rounded-full opacity-20 pulse"></div>
315
+ <div class="absolute top-32 right-32 w-12 h-12 bg-purple-400 rounded-full opacity-20 pulse"></div>
316
+ <div class="absolute bottom-40 right-40 w-6 h-6 bg-blue-400 rounded-full opacity-20 pulse"></div>
317
+
318
+ <div class="absolute top-1/4 left-1/4 text-xs code-snippet p-2 rounded floating">
319
+ <span class="text-purple-400">function</span> <span class="text-blue-400">installApp</span>() {<br>
320
+ &nbsp;&nbsp;<span class="text-cyan-400">return</span> <span class="text-orange-300">'success'</span>;<br>
321
+ }
322
+ </div>
323
+ </div>
324
+
325
+ <script>
326
+ // Simple animation for app icons in phone mockup
327
+ document.addEventListener('DOMContentLoaded', function() {
328
+ const appIcons = document.querySelectorAll('.app-icon');
329
+
330
+ appIcons.forEach((icon, index) => {
331
+ // Random delay for each icon
332
+ icon.style.animationDelay = `${index * 0.1}s`;
333
+
334
+ // Add hover effect
335
+ icon.addEventListener('mouseenter', () => {
336
+ icon.style.transform = 'translateY(-5px) scale(1.05)';
337
+ });
338
+
339
+ icon.addEventListener('mouseleave', () => {
340
+ icon.style.transform = '';
341
+ });
342
+ });
343
+ });
344
+ </script>
345
+ <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=timoon811/appsthema41321" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
346
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ техническое задание для сайта-обложки на тему «Сервисы аренды приложений Android / iOS / PWA»: ⸻ Тема: Сервисы аренды приложений Подзаголовок: Android · iOS · PWA Текст на обложке: Аренда приложений для арбитража ⸻ Визуальные и стилевые требования: • Фон: • Абстрактный фон с визуалами смартфонов, иконок приложений, интерфейсов App Store / Google Play • Элементы кода WebView, значки PWA, иконки установки приложения • Эффект “техно-витрины”: как будто перед зрителем — панель с множеством приложений под аренду • Цветовая гамма: • Чёрный фон • Синие, фиолетовые, бирюзовые неоновые акценты • Элементы интерфейса — белые или светлые, чтобы создать ощущение реального UI • Графика: • Иконки Android / Apple / PWA (в абстрактной форме, без нарушений брендов) • Символы аренды: замок открывается, рукопожатие, API-ключи • Элементы “install”, “open”, “package”, .apk, .ipa • Можно добавить схематичную архитектуру: Приложение → Сервер → Кликабельность • Шрифт: • Чёткий, жирный, футуристический • Надпись читаемая даже в маленьком размере (для мобильных превью) • Размещение текста: • В центре или ближе к левому краю • Справа — элементы интерфейса смартфонов, иконки ОС, визуалы арендуемых приложений ⸻ Дополнительно: • Смысл визуала: показать, что можно легко “взять под ключ” готовое приложение для арбитража — как будто выбираешь товар в маркетплейсе • Подчеркнуть автоматизацию, скорость запуска, мультилендинги через PWA ⸻
2
+ Убери кнопки! Это сайт-обложка