HeavensHackDev commited on
Commit
e775e0c
·
verified ·
1 Parent(s): f9f0da0

Создай онлайн магазин игровых товаров на русском языке

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +380 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Gamegear Store
3
- emoji: 🏆
4
- colorFrom: yellow
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: GameGear Store
3
+ colorFrom: red
4
+ colorTo: blue
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,381 @@
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>GameGear Store - Магазин игровых товаров</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Orbitron:wght@500;600;700&display=swap" rel="stylesheet">
12
+ <style>
13
+ body {
14
+ font-family: 'Montserrat', sans-serif;
15
+ background-color: #0f172a;
16
+ color: #e2e8f0;
17
+ }
18
+ .header-font {
19
+ font-family: 'Orbitron', sans-serif;
20
+ }
21
+ .product-card {
22
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
23
+ }
24
+ .product-card:hover {
25
+ transform: translateY(-5px);
26
+ box-shadow: 0 10px 25px rgba(148, 163, 184, 0.2);
27
+ }
28
+ .glow-button {
29
+ transition: all 0.3s ease;
30
+ }
31
+ .glow-button:hover {
32
+ box-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
33
+ }
34
+ .category-item {
35
+ transition: all 0.3s ease;
36
+ }
37
+ .category-item:hover {
38
+ background-color: #4c1d95;
39
+ transform: scale(1.05);
40
+ }
41
+ .cart-item {
42
+ border-left: 3px solid #8b5cf6;
43
+ }
44
+ </style>
45
+ </head>
46
+ <body class="bg-slate-900 text-slate-100">
47
+ <!-- Header -->
48
+ <header class="bg-slate-800 shadow-lg sticky top-0 z-50">
49
+ <div class="container mx-auto px-4 py-4 flex flex-col md:flex-row justify-between items-center">
50
+ <div class="flex items-center mb-4 md:mb-0">
51
+ <div class="bg-purple-600 w-10 h-10 rounded-lg flex items-center justify-center mr-3">
52
+ <i data-feather="gamepad" class="text-white"></i>
53
+ </div>
54
+ <h1 class="text-2xl font-bold header-font text-purple-400">GameGear Store</h1>
55
+ </div>
56
+
57
+ <div class="w-full md:w-1/3 mb-4 md:mb-0">
58
+ <div class="relative">
59
+ <input type="text" placeholder="Поиск товаров..." class="w-full px-4 py-2 rounded-lg bg-slate-700 text-white placeholder-slate-400 focus:outline-none focus:ring-2 focus:ring-purple-500">
60
+ <i data-feather="search" class="absolute right-3 top-2.5 text-slate-400"></i>
61
+ </div>
62
+ </div>
63
+
64
+ <div class="flex items-center space-x-4">
65
+ <button class="p-2 rounded-full hover:bg-slate-700 transition">
66
+ <i data-feather="heart" class="text-slate-300"></i>
67
+ </button>
68
+ <button class="p-2 rounded-full hover:bg-slate-700 transition relative">
69
+ <i data-feather="shopping-cart" class="text-slate-300"></i>
70
+ <span class="absolute top-0 right-0 bg-purple-600 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">3</span>
71
+ </button>
72
+ <button class="px-4 py-2 bg-purple-600 hover:bg-purple-700 rounded-lg glow-button flex items-center">
73
+ <i data-feather="user" class="mr-2"></i>
74
+ Войти
75
+ </button>
76
+ </div>
77
+ </div>
78
+
79
+ <!-- Navigation -->
80
+ <nav class="container mx-auto px-4 py-3 border-t border-slate-700">
81
+ <ul class="flex flex-wrap justify-center space-x-6">
82
+ <li><a href="#" class="text-purple-400 font-medium hover:text-purple-300">Главная</a></li>
83
+ <li><a href="#" class="text-slate-300 hover:text-purple-300">Каталог</a></li>
84
+ <li><a href="#" class="text-slate-300 hover:text-purple-300">Акции</a></li>
85
+ <li><a href="#" class="text-slate-300 hover:text-purple-300">Новинки</a></li>
86
+ <li><a href="#" class="text-slate-300 hover:text-purple-300">Доставка</a></li>
87
+ <li><a href="#" class="text-slate-300 hover:text-purple-300">Контакты</a></li>
88
+ </ul>
89
+ </nav>
90
+ </header>
91
+
92
+ <!-- Hero Section -->
93
+ <section class="relative bg-gradient-to-r from-purple-900 to-indigo-800 py-20">
94
+ <div class="container mx-auto px-4 text-center">
95
+ <h2 class="text-4xl md:text-6xl font-bold header-font mb-4">Геймерские товары по лучшим ценам</h2>
96
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Все для геймеров: игры, аксессуары, техника и многое другое</p>
97
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
98
+ <button class="px-8 py-3 bg-white text-purple-900 font-bold rounded-lg hover:bg-slate-100 transition glow-button">
99
+ Каталог товаров
100
+ </button>
101
+ <button class="px-8 py-3 bg-transparent border-2 border-white text-white font-bold rounded-lg hover:bg-white hover:text-purple-900 transition">
102
+ Акции недели
103
+ </button>
104
+ </div>
105
+ </div>
106
+ </section>
107
+
108
+ <!-- Categories -->
109
+ <section class="py-16 bg-slate-800">
110
+ <div class="container mx-auto px-4">
111
+ <h2 class="text-3xl font-bold text-center mb-12 header-font">Категории товаров</h2>
112
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6">
113
+ <div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
114
+ <div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
115
+ <i data-feather="monitor" class="text-white"></i>
116
+ </div>
117
+ <h3 class="font-bold">Игры</h3>
118
+ <p class="text-slate-400 text-sm mt-2">500+ товаров</p>
119
+ </div>
120
+ <div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
121
+ <div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
122
+ <i data-feather="headphones" class="text-white"></i>
123
+ </div>
124
+ <h3 class="font-bold">Аксессуары</h3>
125
+ <p class="text-slate-400 text-sm mt-2">300+ товаров</p>
126
+ </div>
127
+ <div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
128
+ <div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
129
+ <i data-feather="cpu" class="text-white"></i>
130
+ </div>
131
+ <h3 class="font-bold">Комплектующие</h3>
132
+ <p class="text-slate-400 text-sm mt-2">200+ товаров</p>
133
+ </div>
134
+ <div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
135
+ <div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
136
+ <i data-feather="smartphone" class="text-white"></i>
137
+ </div>
138
+ <h3 class="font-bold">Гаджеты</h3>
139
+ <p class="text-slate-400 text-sm mt-2">150+ товаров</p>
140
+ </div>
141
+ </div>
142
+ </div>
143
+ </section>
144
+
145
+ <!-- Featured Products -->
146
+ <section class="py-16">
147
+ <div class="container mx-auto px-4">
148
+ <div class="flex justify-between items-center mb-10">
149
+ <h2 class="text-3xl font-bold header-font">Популярные товары</h2>
150
+ <a href="#" class="text-purple-400 hover:text-purple-300 flex items-center">
151
+ Все товары
152
+ <i data-feather="arrow-right" class="ml-2"></i>
153
+ </a>
154
+ </div>
155
+
156
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
157
+ <!-- Product 1 -->
158
+ <div class="product-card bg-slate-800 rounded-xl overflow-hidden">
159
+ <div class="relative">
160
+ <img src="http://static.photos/technology/320x240/1" alt="Игра" class="w-full h-48 object-cover">
161
+ <div class="absolute top-2 right-2 bg-red-500 text-white text-xs font-bold px-2 py-1 rounded">
162
+ -25%
163
+ </div>
164
+ </div>
165
+ <div class="p-5">
166
+ <div class="flex justify-between items-start">
167
+ <h3 class="font-bold text-lg">Cyberpunk 2077</h3>
168
+ <i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
169
+ </div>
170
+ <p class="text-slate-400 text-sm mt-1">Полная версия игры</p>
171
+ <div class="flex justify-between items-center mt-4">
172
+ <div>
173
+ <span class="text-lg font-bold text-purple-400">1499 ₽</span>
174
+ <span class="text-slate-500 line-through text-sm ml-2">1999 ₽</span>
175
+ </div>
176
+ <button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
177
+ <i data-feather="shopping-cart"></i>
178
+ </button>
179
+ </div>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- Product 2 -->
184
+ <div class="product-card bg-slate-800 rounded-xl overflow-hidden">
185
+ <div class="relative">
186
+ <img src="http://static.photos/gaming/320x240/2" alt="Геймпад" class="w-full h-48 object-cover">
187
+ </div>
188
+ <div class="p-5">
189
+ <div class="flex justify-between items-start">
190
+ <h3 class="font-bold text-lg">Геймпад Xbox</h3>
191
+ <i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
192
+ </div>
193
+ <p class="text-slate-400 text-sm mt-1">Беспроводной контроллер</p>
194
+ <div class="flex justify-between items-center mt-4">
195
+ <div>
196
+ <span class="text-lg font-bold text-purple-400">3499 ₽</span>
197
+ </div>
198
+ <button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
199
+ <i data-feather="shopping-cart"></i>
200
+ </button>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Product 3 -->
206
+ <div class="product-card bg-slate-800 rounded-xl overflow-hidden">
207
+ <div class="relative">
208
+ <img src="http://static.photos/technology/320x240/3" alt="Наушники" class="w-full h-48 object-cover">
209
+ <div class="absolute top-2 right-2 bg-green-500 text-white text-xs font-bold px-2 py-1 rounded">
210
+ Новинка
211
+ </div>
212
+ </div>
213
+ <div class="p-5">
214
+ <div class="flex justify-between items-start">
215
+ <h3 class="font-bold text-lg">Наушники HyperX</h3>
216
+ <i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
217
+ </div>
218
+ <p class="text-slate-400 text-sm mt-1">Геймерские наушники 7.1</p>
219
+ <div class="flex justify-between items-center mt-4">
220
+ <div>
221
+ <span class="text-lg font-bold text-purple-400">5999 ₽</span>
222
+ </div>
223
+ <button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
224
+ <i data-feather="shopping-cart"></i>
225
+ </button>
226
+ </div>
227
+ </div>
228
+ </div>
229
+
230
+ <!-- Product 4 -->
231
+ <div class="product-card bg-slate-800 rounded-xl overflow-hidden">
232
+ <div class="relative">
233
+ <img src="http://static.photos/gaming/320x240/4" alt="Клавиатура" class="w-full h-48 object-cover">
234
+ </div>
235
+ <div class="p-5">
236
+ <div class="flex justify-between items-start">
237
+ <h3 class="font-bold text-lg">Клавиатура Razer</h3>
238
+ <i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
239
+ </div>
240
+ <p class="text-slate-400 text-sm mt-1">Механическая RGB</p>
241
+ <div class="flex justify-between items-center mt-4">
242
+ <div>
243
+ <span class="text-lg font-bold text-purple-400">8999 ₽</span>
244
+ </div>
245
+ <button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
246
+ <i data-feather="shopping-cart"></i>
247
+ </button>
248
+ </div>
249
+ </div>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </section>
254
+
255
+ <!-- Special Offers -->
256
+ <section class="py-16 bg-gradient-to-r from-indigo-900 to-purple-900">
257
+ <div class="container mx-auto px-4">
258
+ <h2 class="text-3xl font-bold text-center mb-12 header-font">Специальные предложения</h2>
259
+ <div class="bg-slate-800 rounded-2xl p-8 max-w-4xl mx-auto">
260
+ <div class="flex flex-col md:flex-row items-center">
261
+ <div class="md:w-1/3 mb-6 md:mb-0">
262
+ <img src="http://static.photos/gaming/320x240/5" alt="PlayStation 5" class="rounded-xl">
263
+ </div>
264
+ <div class="md:w-2/3 md:pl-8 text-center md:text-left">
265
+ <h3 class="text-2xl font-bold mb-2">PlayStation 5</h3>
266
+ <p class="text-slate-300 mb-4">Самая мощная игровая консоль нового поколения с эксклюзивными играми</p>
267
+ <div class="flex flex-col sm:flex-row items-center justify-between">
268
+ <div class="mb-4 sm:mb-0">
269
+ <span class="text-2xl font-bold text-purple-400">34999 ₽</span>
270
+ <span class="text-slate-500 line-through ml-3">39999 ₽</span>
271
+ </div>
272
+ <button class="px-6 py-3 bg-purple-600 hover:bg-purple-700 rounded-lg glow-button font-bold">
273
+ Купить сейчас
274
+ </button>
275
+ </div>
276
+ </div>
277
+ </div>
278
+ </div>
279
+ </div>
280
+ </section>
281
+
282
+ <!-- Newsletter -->
283
+ <section class="py-16">
284
+ <div class="container mx-auto px-4">
285
+ <div class="bg-slate-800 rounded-2xl p-8 max-w-3xl mx-auto text-center">
286
+ <h2 class="text-2xl font-bold mb-2">Подпишитесь на рассылку</h2>
287
+ <p class="text-slate-400 mb-6">Получайте уведомления о скидках и новых поступлениях</p>
288
+ <div class="flex flex-col sm:flex-row gap-4 max-w-md mx-auto">
289
+ <input type="email" placeholder="Ваш email" class="flex-grow px-4 py-3 rounded-lg bg-slate-700 text-white placeholder-slate-400 focus:outline-none">
290
+ <button class="px-6 py-3 bg-purple-600 hover:bg-purple-700 rounded-lg glow-button font-bold">
291
+ Подписаться
292
+ </button>
293
+ </div>
294
+ </div>
295
+ </div>
296
+ </section>
297
+
298
+ <!-- Footer -->
299
+ <footer class="bg-slate-800 border-t border-slate-700 pt-16 pb-8">
300
+ <div class="container mx-auto px-4">
301
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
302
+ <div>
303
+ <div class="flex items-center mb-4">
304
+ <div class="bg-purple-600 w-8 h-8 rounded-lg flex items-center justify-center mr-2">
305
+ <i data-feather="gamepad" class="text-white"></i>
306
+ </div>
307
+ <h3 class="text-xl font-bold header-font text-purple-400">GameGear Store</h3>
308
+ </div>
309
+ <p class="text-slate-400 mb-4">Ваш надежный партнер в мире гейминга. Лучшие товары по отличным ценам.</p>
310
+ <div class="flex space-x-4">
311
+ <a href="#" class="text-slate-400 hover:text-purple-400">
312
+ <i data-feather="facebook"></i>
313
+ </a>
314
+ <a href="#" class="text-slate-400 hover:text-purple-400">
315
+ <i data-feather="twitter"></i>
316
+ </a>
317
+ <a href="#" class="text-slate-400 hover:text-purple-400">
318
+ <i data-feather="instagram"></i>
319
+ </a>
320
+ <a href="#" class="text-slate-400 hover:text-purple-400">
321
+ <i data-feather="youtube"></i>
322
+ </a>
323
+ </div>
324
+ </div>
325
+
326
+ <div>
327
+ <h4 class="text-lg font-bold mb-4">Категории</h4>
328
+ <ul class="space-y-2">
329
+ <li><a href="#" class="text-slate-400 hover:text-purple-400">Игры</a></li>
330
+ <li><a href="#" class="text-slate-400 hover:text-purple-400">Консоли</a></li>
331
+ <li><a href="#" class="text-slate-400 hover:text-purple-400">Аксессуары</a></li>
332
+ <li><a href="#" class="text-slate-400 hover:text-purple-400">Комплектующие</a></li>
333
+ <li><a href="#" class="text-slate-400 hover:text-purple-400">Гаджеты</a></li>
334
+ </ul>
335
+ </div>
336
+
337
+ <div>
338
+ <h4 class="text-lg font-bold mb-4">Информация</h4>
339
+ <ul class="space-y-2">
340
+ <li><a href="#" class="text-slate-400 hover:text-purple-400">О нас</a></li>
341
+ <li><a href="#" class="text-slate-400 hover:text-purple-400">Доставка</a></li>
342
+ <li><a href="#" class="text-slate-400 hover:text-purple-400">Оплата</a></li>
343
+ <li><a href="#" class="text-slate-400 hover:text-purple-400">Гарантия</a></li>
344
+ <li><a href="#" class="text-slate-400 hover:text-purple-400">Контакты</a></li>
345
+ </ul>
346
+ </div>
347
+
348
+ <div>
349
+ <h4 class="text-lg font-bold mb-4">Контакты</h4>
350
+ <ul class="space-y-3">
351
+ <li class="flex items-start">
352
+ <i data-feather="map-pin" class="text-slate-400 mr-3 mt-1"></i>
353
+ <span class="text-slate-400">г. Москва, ул. Геймерская, 15</span>
354
+ </li>
355
+ <li class="flex items-center">
356
+ <i data-feather="phone" class="text-slate-400 mr-3"></i>
357
+ <span class="text-slate-400">+7 (495) 123-45-67</span>
358
+ </li>
359
+ <li class="flex items-center">
360
+ <i data-feather="mail" class="text-slate-400 mr-3"></i>
361
+ <span class="text-slate-400">info@gamegear.ru</span>
362
+ </li>
363
+ <li class="flex items-center">
364
+ <i data-feather="clock" class="text-slate-400 mr-3"></i>
365
+ <span class="text-slate-400">Пн-Пт: 9:00-21:00</span>
366
+ </li>
367
+ </ul>
368
+ </div>
369
+ </div>
370
+
371
+ <div class="border-t border-slate-700 pt-8 text-center text-slate-500">
372
+ <p>© 2023 GameGear Store. Все права защищены.</p>
373
+ </div>
374
+ </div>
375
+ </footer>
376
+
377
+ <script>
378
+ feather.replace();
379
+ </script>
380
+ </body>
381
  </html>