gamegear-store / index.html
HeavensHackDev's picture
Создай онлайн магазин игровых товаров на русском языке
e775e0c verified
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GameGear Store - Магазин игровых товаров</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Orbitron:wght@500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Montserrat', sans-serif;
background-color: #0f172a;
color: #e2e8f0;
}
.header-font {
font-family: 'Orbitron', sans-serif;
}
.product-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(148, 163, 184, 0.2);
}
.glow-button {
transition: all 0.3s ease;
}
.glow-button:hover {
box-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
}
.category-item {
transition: all 0.3s ease;
}
.category-item:hover {
background-color: #4c1d95;
transform: scale(1.05);
}
.cart-item {
border-left: 3px solid #8b5cf6;
}
</style>
</head>
<body class="bg-slate-900 text-slate-100">
<!-- Header -->
<header class="bg-slate-800 shadow-lg sticky top-0 z-50">
<div class="container mx-auto px-4 py-4 flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<div class="bg-purple-600 w-10 h-10 rounded-lg flex items-center justify-center mr-3">
<i data-feather="gamepad" class="text-white"></i>
</div>
<h1 class="text-2xl font-bold header-font text-purple-400">GameGear Store</h1>
</div>
<div class="w-full md:w-1/3 mb-4 md:mb-0">
<div class="relative">
<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">
<i data-feather="search" class="absolute right-3 top-2.5 text-slate-400"></i>
</div>
</div>
<div class="flex items-center space-x-4">
<button class="p-2 rounded-full hover:bg-slate-700 transition">
<i data-feather="heart" class="text-slate-300"></i>
</button>
<button class="p-2 rounded-full hover:bg-slate-700 transition relative">
<i data-feather="shopping-cart" class="text-slate-300"></i>
<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>
</button>
<button class="px-4 py-2 bg-purple-600 hover:bg-purple-700 rounded-lg glow-button flex items-center">
<i data-feather="user" class="mr-2"></i>
Войти
</button>
</div>
</div>
<!-- Navigation -->
<nav class="container mx-auto px-4 py-3 border-t border-slate-700">
<ul class="flex flex-wrap justify-center space-x-6">
<li><a href="#" class="text-purple-400 font-medium hover:text-purple-300">Главная</a></li>
<li><a href="#" class="text-slate-300 hover:text-purple-300">Каталог</a></li>
<li><a href="#" class="text-slate-300 hover:text-purple-300">Акции</a></li>
<li><a href="#" class="text-slate-300 hover:text-purple-300">Новинки</a></li>
<li><a href="#" class="text-slate-300 hover:text-purple-300">Доставка</a></li>
<li><a href="#" class="text-slate-300 hover:text-purple-300">Контакты</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="relative bg-gradient-to-r from-purple-900 to-indigo-800 py-20">
<div class="container mx-auto px-4 text-center">
<h2 class="text-4xl md:text-6xl font-bold header-font mb-4">Геймерские товары по лучшим ценам</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Все для геймеров: игры, аксессуары, техника и многое другое</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="px-8 py-3 bg-white text-purple-900 font-bold rounded-lg hover:bg-slate-100 transition glow-button">
Каталог товаров
</button>
<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">
Акции недели
</button>
</div>
</div>
</section>
<!-- Categories -->
<section class="py-16 bg-slate-800">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 header-font">Категории товаров</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
<div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
<i data-feather="monitor" class="text-white"></i>
</div>
<h3 class="font-bold">Игры</h3>
<p class="text-slate-400 text-sm mt-2">500+ товаров</p>
</div>
<div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
<div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
<i data-feather="headphones" class="text-white"></i>
</div>
<h3 class="font-bold">Аксессуары</h3>
<p class="text-slate-400 text-sm mt-2">300+ товаров</p>
</div>
<div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
<div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
<i data-feather="cpu" class="text-white"></i>
</div>
<h3 class="font-bold">Комплектующие</h3>
<p class="text-slate-400 text-sm mt-2">200+ товаров</p>
</div>
<div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
<div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
<i data-feather="smartphone" class="text-white"></i>
</div>
<h3 class="font-bold">Гаджеты</h3>
<p class="text-slate-400 text-sm mt-2">150+ товаров</p>
</div>
</div>
</div>
</section>
<!-- Featured Products -->
<section class="py-16">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center mb-10">
<h2 class="text-3xl font-bold header-font">Популярные товары</h2>
<a href="#" class="text-purple-400 hover:text-purple-300 flex items-center">
Все товары
<i data-feather="arrow-right" class="ml-2"></i>
</a>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Product 1 -->
<div class="product-card bg-slate-800 rounded-xl overflow-hidden">
<div class="relative">
<img src="http://static.photos/technology/320x240/1" alt="Игра" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-red-500 text-white text-xs font-bold px-2 py-1 rounded">
-25%
</div>
</div>
<div class="p-5">
<div class="flex justify-between items-start">
<h3 class="font-bold text-lg">Cyberpunk 2077</h3>
<i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
</div>
<p class="text-slate-400 text-sm mt-1">Полная версия игры</p>
<div class="flex justify-between items-center mt-4">
<div>
<span class="text-lg font-bold text-purple-400">1499 ₽</span>
<span class="text-slate-500 line-through text-sm ml-2">1999 ₽</span>
</div>
<button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
<i data-feather="shopping-cart"></i>
</button>
</div>
</div>
</div>
<!-- Product 2 -->
<div class="product-card bg-slate-800 rounded-xl overflow-hidden">
<div class="relative">
<img src="http://static.photos/gaming/320x240/2" alt="Геймпад" class="w-full h-48 object-cover">
</div>
<div class="p-5">
<div class="flex justify-between items-start">
<h3 class="font-bold text-lg">Геймпад Xbox</h3>
<i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
</div>
<p class="text-slate-400 text-sm mt-1">Беспроводной контроллер</p>
<div class="flex justify-between items-center mt-4">
<div>
<span class="text-lg font-bold text-purple-400">3499 ₽</span>
</div>
<button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
<i data-feather="shopping-cart"></i>
</button>
</div>
</div>
</div>
<!-- Product 3 -->
<div class="product-card bg-slate-800 rounded-xl overflow-hidden">
<div class="relative">
<img src="http://static.photos/technology/320x240/3" alt="Наушники" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-green-500 text-white text-xs font-bold px-2 py-1 rounded">
Новинка
</div>
</div>
<div class="p-5">
<div class="flex justify-between items-start">
<h3 class="font-bold text-lg">Наушники HyperX</h3>
<i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
</div>
<p class="text-slate-400 text-sm mt-1">Геймерские наушники 7.1</p>
<div class="flex justify-between items-center mt-4">
<div>
<span class="text-lg font-bold text-purple-400">5999 ₽</span>
</div>
<button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
<i data-feather="shopping-cart"></i>
</button>
</div>
</div>
</div>
<!-- Product 4 -->
<div class="product-card bg-slate-800 rounded-xl overflow-hidden">
<div class="relative">
<img src="http://static.photos/gaming/320x240/4" alt="Клавиатура" class="w-full h-48 object-cover">
</div>
<div class="p-5">
<div class="flex justify-between items-start">
<h3 class="font-bold text-lg">Клавиатура Razer</h3>
<i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
</div>
<p class="text-slate-400 text-sm mt-1">Механическая RGB</p>
<div class="flex justify-between items-center mt-4">
<div>
<span class="text-lg font-bold text-purple-400">8999 ₽</span>
</div>
<button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
<i data-feather="shopping-cart"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Special Offers -->
<section class="py-16 bg-gradient-to-r from-indigo-900 to-purple-900">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 header-font">Специальные предложения</h2>
<div class="bg-slate-800 rounded-2xl p-8 max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/3 mb-6 md:mb-0">
<img src="http://static.photos/gaming/320x240/5" alt="PlayStation 5" class="rounded-xl">
</div>
<div class="md:w-2/3 md:pl-8 text-center md:text-left">
<h3 class="text-2xl font-bold mb-2">PlayStation 5</h3>
<p class="text-slate-300 mb-4">Самая мощная игровая консоль нового поколения с эксклюзивными играми</p>
<div class="flex flex-col sm:flex-row items-center justify-between">
<div class="mb-4 sm:mb-0">
<span class="text-2xl font-bold text-purple-400">34999 ₽</span>
<span class="text-slate-500 line-through ml-3">39999 ₽</span>
</div>
<button class="px-6 py-3 bg-purple-600 hover:bg-purple-700 rounded-lg glow-button font-bold">
Купить сейчас
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16">
<div class="container mx-auto px-4">
<div class="bg-slate-800 rounded-2xl p-8 max-w-3xl mx-auto text-center">
<h2 class="text-2xl font-bold mb-2">Подпишитесь на рассылку</h2>
<p class="text-slate-400 mb-6">Получайте уведомления о скидках и новых поступлениях</p>
<div class="flex flex-col sm:flex-row gap-4 max-w-md mx-auto">
<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">
<button class="px-6 py-3 bg-purple-600 hover:bg-purple-700 rounded-lg glow-button font-bold">
Подписаться
</button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-slate-800 border-t border-slate-700 pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<div class="flex items-center mb-4">
<div class="bg-purple-600 w-8 h-8 rounded-lg flex items-center justify-center mr-2">
<i data-feather="gamepad" class="text-white"></i>
</div>
<h3 class="text-xl font-bold header-font text-purple-400">GameGear Store</h3>
</div>
<p class="text-slate-400 mb-4">Ваш надежный партнер в мире гейминга. Лучшие товары по отличным ценам.</p>
<div class="flex space-x-4">
<a href="#" class="text-slate-400 hover:text-purple-400">
<i data-feather="facebook"></i>
</a>
<a href="#" class="text-slate-400 hover:text-purple-400">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-slate-400 hover:text-purple-400">
<i data-feather="instagram"></i>
</a>
<a href="#" class="text-slate-400 hover:text-purple-400">
<i data-feather="youtube"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Категории</h4>
<ul class="space-y-2">
<li><a href="#" class="text-slate-400 hover:text-purple-400">Игры</a></li>
<li><a href="#" class="text-slate-400 hover:text-purple-400">Консоли</a></li>
<li><a href="#" class="text-slate-400 hover:text-purple-400">Аксессуары</a></li>
<li><a href="#" class="text-slate-400 hover:text-purple-400">Комплектующие</a></li>
<li><a href="#" class="text-slate-400 hover:text-purple-400">Гаджеты</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Информация</h4>
<ul class="space-y-2">
<li><a href="#" class="text-slate-400 hover:text-purple-400">О нас</a></li>
<li><a href="#" class="text-slate-400 hover:text-purple-400">Доставка</a></li>
<li><a href="#" class="text-slate-400 hover:text-purple-400">Оплата</a></li>
<li><a href="#" class="text-slate-400 hover:text-purple-400">Гарантия</a></li>
<li><a href="#" class="text-slate-400 hover:text-purple-400">Контакты</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Контакты</h4>
<ul class="space-y-3">
<li class="flex items-start">
<i data-feather="map-pin" class="text-slate-400 mr-3 mt-1"></i>
<span class="text-slate-400">г. Москва, ул. Геймерская, 15</span>
</li>
<li class="flex items-center">
<i data-feather="phone" class="text-slate-400 mr-3"></i>
<span class="text-slate-400">+7 (495) 123-45-67</span>
</li>
<li class="flex items-center">
<i data-feather="mail" class="text-slate-400 mr-3"></i>
<span class="text-slate-400">info@gamegear.ru</span>
</li>
<li class="flex items-center">
<i data-feather="clock" class="text-slate-400 mr-3"></i>
<span class="text-slate-400">Пн-Пт: 9:00-21:00</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-slate-700 pt-8 text-center text-slate-500">
<p>© 2023 GameGear Store. Все права защищены.</p>
</div>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html>