timoon811 commited on
Commit
2742007
·
verified ·
1 Parent(s): f5892da

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +446 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Mobileapps
3
- emoji: 😻
4
- colorFrom: indigo
5
  colorTo: gray
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: mobileapps
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,446 @@
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>Сервисы аренды мобильных приложений</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ scroll-behavior: smooth;
15
+ background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
16
+ color: #1a202c;
17
+ }
18
+
19
+ .slide {
20
+ min-height: 100vh;
21
+ padding: 4rem;
22
+ display: flex;
23
+ flex-direction: column;
24
+ justify-content: center;
25
+ opacity: 0;
26
+ transform: translateY(20px);
27
+ transition: all 0.6s ease-out;
28
+ }
29
+
30
+ .slide.active {
31
+ opacity: 1;
32
+ transform: translateY(0);
33
+ }
34
+
35
+ .platform-icon {
36
+ transition: all 0.3s ease;
37
+ }
38
+
39
+ .platform-icon:hover {
40
+ transform: scale(1.1);
41
+ }
42
+
43
+ .progress-bar {
44
+ position: fixed;
45
+ top: 0;
46
+ left: 0;
47
+ height: 4px;
48
+ background: linear-gradient(90deg, #4f46e5 0%, #10b981 100%);
49
+ z-index: 100;
50
+ }
51
+
52
+ @keyframes float {
53
+ 0%, 100% { transform: translateY(0); }
54
+ 50% { transform: translateY(-10px); }
55
+ }
56
+
57
+ .floating {
58
+ animation: float 4s ease-in-out infinite;
59
+ }
60
+ </style>
61
+ </head>
62
+ <body>
63
+ <div class="progress-bar" id="progressBar"></div>
64
+
65
+ <div class="slide active" id="slide1">
66
+ <div class="max-w-6xl mx-auto text-center">
67
+ <h1 class="text-5xl md:text-7xl font-bold mb-8 text-transparent bg-clip-text bg-gradient-to-r from-indigo-600 to-emerald-500">
68
+ Аренда мобильных приложений
69
+ </h1>
70
+ <p class="text-xl md:text-2xl text-gray-600 mb-12 max-w-3xl mx-auto">
71
+ Современные решения для бизнеса без затрат на разработку
72
+ </p>
73
+ <div class="flex justify-center space-x-8 mb-16">
74
+ <div class="platform-icon">
75
+ <img src="https://cdn-icons-png.flaticon.com/512/226/226770.png" alt="Android" class="w-24 h-24 floating" style="animation-delay: 0.2s;">
76
+ </div>
77
+ <div class="platform-icon">
78
+ <img src="https://cdn-icons-png.flaticon.com/512/226/226772.png" alt="iOS" class="w-24 h-24 floating" style="animation-delay: 0.4s;">
79
+ </div>
80
+ <div class="platform-icon">
81
+ <img src="https://cdn-icons-png.flaticon.com/512/1126/1126012.png" alt="PWA" class="w-24 h-24 floating" style="animation-delay: 0.6s;">
82
+ </div>
83
+ </div>
84
+ <div class="animate__animated animate__fadeInUp animate__delay-1s">
85
+ <p class="text-gray-500 italic">Листайте вниз для продолжения...</p>
86
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10 mx-auto mt-4 text-gray-400 animate-bounce" fill="none" viewBox="0 0 24 24" stroke="currentColor">
87
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3" />
88
+ </svg>
89
+ </div>
90
+ </div>
91
+ </div>
92
+
93
+ <div class="slide" id="slide2">
94
+ <div class="max-w-6xl mx-auto">
95
+ <h2 class="text-4xl font-bold mb-12 text-center text-gray-800">Что такое аренда приложений?</h2>
96
+ <div class="grid md:grid-cols-3 gap-8">
97
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
98
+ <div class="text-indigo-500 mb-4">
99
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12" fill="none" viewBox="0 0 24 24" stroke="currentColor">
100
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" />
101
+ </svg>
102
+ </div>
103
+ <h3 class="text-xl font-semibold mb-3">Готовые решения</h3>
104
+ <p class="text-gray-600">Использование уже разработанных приложений с возможностью кастомизации под ваш бренд</p>
105
+ </div>
106
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
107
+ <div class="text-emerald-500 mb-4">
108
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12" fill="none" viewBox="0 0 24 24" stroke="currentColor">
109
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
110
+ </svg>
111
+ </div>
112
+ <h3 class="text-xl font-semibold mb-3">Экономия бюджета</h3>
113
+ <p class="text-gray-600">Значительно меньшие затраты по сравнению с разработкой собственного приложения с нуля</p>
114
+ </div>
115
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
116
+ <div class="text-purple-500 mb-4">
117
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12" fill="none" viewBox="0 0 24 24" stroke="currentColor">
118
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
119
+ </svg>
120
+ </div>
121
+ <h3 class="text-xl font-semibold mb-3">Быстрый запуск</h3>
122
+ <p class="text-gray-600">Возможность начать использовать приложение уже через несколько дней после оформления заявки</p>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </div>
127
+
128
+ <div class="slide" id="slide3">
129
+ <div class="max-w-6xl mx-auto">
130
+ <h2 class="text-4xl font-bold mb-12 text-center text-gray-800">Платформы для аренды</h2>
131
+ <div class="grid md:grid-cols-3 gap-8">
132
+ <div class="bg-white p-8 rounded-xl shadow-lg">
133
+ <div class="flex items-center mb-6">
134
+ <img src="https://cdn-icons-png.flaticon.com/512/226/226770.png" alt="Android" class="w-16 h-16 mr-4">
135
+ <h3 class="text-2xl font-semibold">Android</h3>
136
+ </div>
137
+ <ul class="space-y-3 text-gray-600">
138
+ <li class="flex items-start">
139
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-green-500 mr-2 mt-0.5" viewBox="0 0 20 20" fill="currentColor">
140
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
141
+ </svg>
142
+ <span>Доступ через Google Play</span>
143
+ </li>
144
+ <li class="flex items-start">
145
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-green-500 mr-2 mt-0.5" viewBox="0 0 20 20" fill="currentColor">
146
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
147
+ </svg>
148
+ <span>Широкий охват пользователей</span>
149
+ </li>
150
+ <li class="flex items-start">
151
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-green-500 mr-2 mt-0.5" viewBox="0 0 20 20" fill="currentColor">
152
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
153
+ </svg>
154
+ <span>Гибкие настройки</span>
155
+ </li>
156
+ </ul>
157
+ </div>
158
+
159
+ <div class="bg-white p-8 rounded-xl shadow-lg">
160
+ <div class="flex items-center mb-6">
161
+ <img src="https://cdn-icons-png.flaticon.com/512/226/226772.png" alt="iOS" class="w-16 h-16 mr-4">
162
+ <h3 class="text-2xl font-semibold">iOS</h3>
163
+ </div>
164
+ <ul class="space-y-3 text-gray-600">
165
+ <li class="flex items-start">
166
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-green-500 mr-2 mt-0.5" viewBox="0 0 20 20" fill="currentColor">
167
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
168
+ </svg>
169
+ <span>Присутствие в App Store</span>
170
+ </li>
171
+ <li class="flex items-start">
172
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-green-500 mr-2 mt-0.5" viewBox="0 0 20 20" fill="currentColor">
173
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
174
+ </svg>
175
+ <span>Премиальная аудитория</span>
176
+ </li>
177
+ <li class="flex items-start">
178
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-green-500 mr-2 mt-0.5" viewBox="0 0 20 20" fill="currentColor">
179
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
180
+ </svg>
181
+ <span>Высокая безопасность</span>
182
+ </li>
183
+ </ul>
184
+ </div>
185
+
186
+ <div class="bg-white p-8 rounded-xl shadow-lg">
187
+ <div class="flex items-center mb-6">
188
+ <img src="https://cdn-icons-png.flaticon.com/512/1126/1126012.png" alt="PWA" class="w-16 h-16 mr-4">
189
+ <h3 class="text-2xl font-semibold">PWA</h3>
190
+ </div>
191
+ <ul class="space-y-3 text-gray-600">
192
+ <li class="flex items-start">
193
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-green-500 mr-2 mt-0.5" viewBox="0 0 20 20" fill="currentColor">
194
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
195
+ </svg>
196
+ <span>Не требует установки</span>
197
+ </li>
198
+ <li class="flex items-start">
199
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-green-500 mr-2 mt-0.5" viewBox="0 0 20 20" fill="currentColor">
200
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
201
+ </svg>
202
+ <span>Кроссплатформенность</span>
203
+ </li>
204
+ <li class="flex items-start">
205
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-green-500 mr-2 mt-0.5" viewBox="0 0 20 20" fill="currentColor">
206
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" />
207
+ </svg>
208
+ <span>Быстрая разработка</span>
209
+ </li>
210
+ </ul>
211
+ </div>
212
+ </div>
213
+ </div>
214
+ </div>
215
+
216
+ <div class="slide" id="slide4">
217
+ <div class="max-w-6xl mx-auto">
218
+ <h2 class="text-4xl font-bold mb-12 text-center text-gray-800">Преимущества аренды</h2>
219
+ <div class="grid md:grid-cols-2 gap-8">
220
+ <div class="bg-gradient-to-br from-indigo-50 to-blue-50 p-8 rounded-xl shadow-lg">
221
+ <div class="flex items-center mb-4">
222
+ <div class="bg-indigo-100 p-3 rounded-full mr-4">
223
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-indigo-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
224
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
225
+ </svg>
226
+ </div>
227
+ <h3 class="text-2xl font-semibold text-gray-800">Безопасность</h3>
228
+ </div>
229
+ <p class="text-gray-600">Все прилож��ния проходят строгую проверку и соответствуют требованиям магазинов приложений. Ваши данные защищены современными методами шифрования.</p>
230
+ </div>
231
+
232
+ <div class="bg-gradient-to-br from-emerald-50 to-green-50 p-8 rounded-xl shadow-lg">
233
+ <div class="flex items-center mb-4">
234
+ <div class="bg-emerald-100 p-3 rounded-full mr-4">
235
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-emerald-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
236
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
237
+ </svg>
238
+ </div>
239
+ <h3 class="text-2xl font-semibold text-gray-800">Скорость</h3>
240
+ </div>
241
+ <p class="text-gray-600">Быстрое развертывание приложений благодаря готовым решениям. Вы получаете работающее приложение в несколько раз быстрее, чем при самостоятельной разработке.</p>
242
+ </div>
243
+
244
+ <div class="bg-gradient-to-br from-purple-50 to-pink-50 p-8 rounded-xl shadow-lg">
245
+ <div class="flex items-center mb-4">
246
+ <div class="bg-purple-100 p-3 rounded-full mr-4">
247
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-purple-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
248
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" />
249
+ </svg>
250
+ </div>
251
+ <h3 class="text-2xl font-semibold text-gray-800">Кастомизация</h3>
252
+ </div>
253
+ <p class="text-gray-600">Возможность адаптировать приложение под ваш бренд: цвета, логотипы, контент. Создайте уникальный пользовательский опыт без затрат на полный цикл разработки.</p>
254
+ </div>
255
+
256
+ <div class="bg-gradient-to-br from-amber-50 to-yellow-50 p-8 rounded-xl shadow-lg">
257
+ <div class="flex items-center mb-4">
258
+ <div class="bg-amber-100 p-3 rounded-full mr-4">
259
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-amber-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
260
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 15a4 4 0 004 4h9a5 5 0 10-.1-9.999 5.002 5.002 0 10-9.78 2.096A4.001 4.001 0 003 15z" />
261
+ </svg>
262
+ </div>
263
+ <h3 class="text-2xl font-semibold text-gray-800">Облачные технологии</h3>
264
+ </div>
265
+ <p class="text-gray-600">Все приложения работают на надежных облачных серверах с автоматическим масштабированием. Вам не нужно беспокоиться о технической инфраструктуре.</p>
266
+ </div>
267
+ </div>
268
+ </div>
269
+ </div>
270
+
271
+ <div class="slide" id="slide5">
272
+ <div class="max-w-6xl mx-auto text-center">
273
+ <h2 class="text-4xl font-bold mb-8 text-gray-800">Как это работает?</h2>
274
+ <div class="relative">
275
+ <div class="hidden md:block absolute top-1/2 left-0 right-0 h-1 bg-gray-200 -translate-y-1/2"></div>
276
+ <div class="grid md:grid-cols-4 gap-8 relative">
277
+ <div class="bg-white p-6 rounded-xl shadow-lg z-10">
278
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
279
+ <span class="text-indigo-600 font-bold text-xl">1</span>
280
+ </div>
281
+ <h3 class="text-xl font-semibold mb-2">Выбор платформы</h3>
282
+ <p class="text-gray-600">Определите, какое приложение вам нужно: Android, iOS или PWA</p>
283
+ </div>
284
+ <div class="bg-white p-6 rounded-xl shadow-lg z-10">
285
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
286
+ <span class="text-indigo-600 font-bold text-xl">2</span>
287
+ </div>
288
+ <h3 class="text-xl font-semibold mb-2">Настройка</h3>
289
+ <p class="text-gray-600">Выберите дизайн и функционал под ваши задачи</p>
290
+ </div>
291
+ <div class="bg-white p-6 rounded-xl shadow-lg z-10">
292
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
293
+ <span class="text-indigo-600 font-bold text-xl">3</span>
294
+ </div>
295
+ <h3 class="text-xl font-semibold mb-2">Публикация</h3>
296
+ <p class="text-gray-600">Мы размещаем приложение в магазинах или предоставляем ссылку</p>
297
+ </div>
298
+ <div class="bg-white p-6 rounded-xl shadow-lg z-10">
299
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
300
+ <span class="text-indigo-600 font-bold text-xl">4</span>
301
+ </div>
302
+ <h3 class="text-xl font-semibold mb-2">Использование</h3>
303
+ <p class="text-gray-600">Вы получаете готовое решение и начинаете им пользоваться</p>
304
+ </div>
305
+ </div>
306
+ </div>
307
+ </div>
308
+ </div>
309
+
310
+ <div class="slide" id="slide6">
311
+ <div class="max-w-6xl mx-auto text-center">
312
+ <h2 class="text-4xl font-bold mb-8 text-gray-800">Кому подходит аренда приложений?</h2>
313
+ <div class="grid md:grid-cols-3 gap-8">
314
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
315
+ <div class="bg-blue-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
316
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10 text-blue-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
317
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4" />
318
+ </svg>
319
+ </div>
320
+ <h3 class="text-xl font-semibold mb-3">Малый бизнес</h3>
321
+ <p class="text-gray-600">Для компаний, которые хотят иметь мобильное присутствие без больших инвестиций в разработку</p>
322
+ </div>
323
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
324
+ <div class="bg-purple-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
325
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10 text-purple-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
326
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 18h.01M8 21h8a2 2 0 002-2V5a2 2 0 00-2-2H8a2 2 0 00-2 2v14a2 2 0 002 2z" />
327
+ </svg>
328
+ </div>
329
+ <h3 class="text-xl font-semibold mb-3">Стартапы</h3>
330
+ <p class="text-gray-600">Для тестирования гипотез и быстрого запуска MVP без технических сложностей</p>
331
+ </div>
332
+ <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition-shadow">
333
+ <div class="bg-green-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
334
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10 text-green-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
335
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" />
336
+ </svg>
337
+ </div>
338
+ <h3 class="text-xl font-semibold mb-3">События</h3>
339
+ <p class="text-gray-600">Для конференций, фестивалей и временных мероприятий, где нужно мобильное приложение на короткий срок</p>
340
+ </div>
341
+ </div>
342
+ </div>
343
+ </div>
344
+
345
+ <div class="slide" id="slide7">
346
+ <div class="max-w-4xl mx-auto text-center">
347
+ <h2 class="text-4xl font-bold mb-8 text-gray-800">Будущее мобильных технологий</h2>
348
+ <p class="text-xl text-gray-600 mb-12">
349
+ Аренда приложений становится новым стандартом для бизнеса, сочетая в себе доступность, качество и скорость внедрения. Это решение, которое позволяет сосредоточиться на вашем основном бизнесе, оставив технические вопросы профессионалам.
350
+ </p>
351
+ <div class="flex justify-center space-x-6">
352
+ <img src="https://cdn-icons-png.flaticon.com/512/226/226770.png" alt="Android" class="w-16 h-16 animate__animated animate__pulse animate__infinite" style="animation-delay: 0.2s;">
353
+ <img src="https://cdn-icons-png.flaticon.com/512/226/226772.png" alt="iOS" class="w-16 h-16 animate__animated animate__pulse animate__infinite" style="animation-delay: 0.4s;">
354
+ <img src="https://cdn-icons-png.flaticon.com/512/1126/1126012.png" alt="PWA" class="w-16 h-16 animate__animated animate__pulse animate__infinite" style="animation-delay: 0.6s;">
355
+ </div>
356
+ </div>
357
+ </div>
358
+
359
+ <script>
360
+ document.addEventListener('DOMContentLoaded', function() {
361
+ const slides = document.querySelectorAll('.slide');
362
+ const progressBar = document.getElementById('progressBar');
363
+ let currentSlide = 0;
364
+
365
+ // Инициализация первого слайда
366
+ slides[currentSlide].classList.add('active');
367
+
368
+ // Обработка скролла
369
+ let isScrolling = false;
370
+ window.addEventListener('wheel', function(e) {
371
+ if (isScrolling) return;
372
+
373
+ isScrolling = true;
374
+
375
+ if (e.deltaY > 0 && currentSlide < slides.length - 1) {
376
+ // Скролл вниз
377
+ currentSlide++;
378
+ } else if (e.deltaY < 0 && currentSlide > 0) {
379
+ // Скролл вверх
380
+ currentSlide--;
381
+ }
382
+
383
+ updateSlides();
384
+
385
+ setTimeout(function() {
386
+ isScrolling = false;
387
+ }, 1000);
388
+ }, { passive: true });
389
+
390
+ // Обработка касаний для мобильных устройств
391
+ let startY;
392
+ document.addEventListener('touchstart', function(e) {
393
+ startY = e.touches[0].clientY;
394
+ }, { passive: true });
395
+
396
+ document.addEventListener('touchmove', function(e) {
397
+ if (!startY || isScrolling) return;
398
+
399
+ const y = e.touches[0].clientY;
400
+ const diff = startY - y;
401
+
402
+ if (diff > 50 && currentSlide < slides.length - 1) {
403
+ // Свайп вверх
404
+ currentSlide++;
405
+ startY = null;
406
+ isScrolling = true;
407
+ updateSlides();
408
+ } else if (diff < -50 && currentSlide > 0) {
409
+ // Свайп вниз
410
+ currentSlide--;
411
+ startY = null;
412
+ isScrolling = true;
413
+ updateSlides();
414
+ }
415
+
416
+ if (isScrolling) {
417
+ setTimeout(function() {
418
+ isScrolling = false;
419
+ }, 1000);
420
+ }
421
+ }, { passive: true });
422
+
423
+ // Обновление слайдов
424
+ function updateSlides() {
425
+ slides.forEach((slide, index) => {
426
+ if (index === currentSlide) {
427
+ slide.classList.add('active');
428
+ } else {
429
+ slide.classList.remove('active');
430
+ }
431
+ });
432
+
433
+ // Прокрутка к текущему слайду
434
+ slides[currentSlide].scrollIntoView({ behavior: 'smooth' });
435
+
436
+ // Обновление прогресс-бара
437
+ const progress = ((currentSlide + 1) / slides.length) * 100;
438
+ progressBar.style.width = progress + '%';
439
+ }
440
+
441
+ // Инициализация прогресс-бара
442
+ progressBar.style.width = '14%';
443
+ });
444
+ </script>
445
+ <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/mobileapps" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
446
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Сделай сайт презентацию без кнопок, футера и хэдера на эту тему Сервисы аренды мобильных приложений Android IOS PWA