File size: 15,170 Bytes
e242708
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ArtVision | Платформа для творчества</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .video-card:hover .video-overlay {
            opacity: 1;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
    </style>
</head>
<body class="bg-gray-100 font-sans">
    <!-- Header -->
    <header class="gradient-bg text-white shadow-lg">
        <div class="container mx-auto px-4 py-3 flex items-center justify-between">
            <div class="flex items-center space-x-2">
                <i class="fas fa-palette text-2xl"></i>
                <h1 class="text-2xl font-bold">ArtVision</h1>
            </div>
            <div class="hidden md:flex space-x-6">
                <a href="#" class="hover:text-gray-200">Главная</a>
                <a href="#" class="hover:text-gray-200">Категории</a>
                <a href="#" class="hover:text-gray-200">Тренды</a>
                <a href="#" class="hover:text-gray-200">Подписки</a>
            </div>
            <div class="flex items-center space-x-4">
                <button class="p-2 rounded-full hover:bg-white hover:bg-opacity-20">
                    <i class="fas fa-search"></i>
                </button>
                <button class="bg-white text-purple-700 px-4 py-1 rounded-full font-medium hover:bg-gray-100">
                    Войти
                </button>
            </div>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="gradient-bg text-white py-16">
        <div class="container mx-auto px-4 text-center">
            <h2 class="text-4xl md:text-5xl font-bold mb-4">Откройте мир творчества</h2>
            <p class="text-xl mb-8 max-w-2xl mx-auto">Платформа для художников, фотографов и создателей контента</p>
            <div class="max-w-xl mx-auto relative">
                <input type="text" placeholder="Поиск видео, каналов, категорий..." 
                       class="w-full px-6 py-4 rounded-full text-gray-800 focus:outline-none focus:ring-2 focus:ring-purple-300">
                <button class="absolute right-2 top-2 bg-purple-600 text-white px-6 py-2 rounded-full hover:bg-purple-700">
                    <i class="fas fa-search"></i>
                </button>
            </div>
        </div>
    </section>

    <!-- Categories -->
    <section class="py-8 bg-white">
        <div class="container mx-auto px-4">
            <div class="flex overflow-x-auto space-x-4 pb-4">
                <button class="px-4 py-2 bg-purple-600 text-white rounded-full whitespace-nowrap">Все</button>
                <button class="px-4 py-2 bg-gray-200 rounded-full whitespace-nowrap">Живопись</button>
                <button class="px-4 py-2 bg-gray-200 rounded-full whitespace-nowrap">Фотография</button>
                <button class="px-4 py-2 bg-gray-200 rounded-full whitespace-nowrap">Цифровое искусство</button>
                <button class="px-4 py-2 bg-gray-200 rounded-full whitespace-nowrap">Скульптура</button>
                <button class="px-4 py-2 bg-gray-200 rounded-full whitespace-nowrap">Графика</button>
                <button class="px-4 py-2 bg-gray-200 rounded-full whitespace-nowrap">Анимация</button>
            </div>
        </div>
    </section>

    <!-- Video Grid -->
    <main class="container mx-auto px-4 py-8">
        <h3 class="text-2xl font-bold mb-6">Рекомендуем для вас</h3>
        <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
            <!-- Video Card 1 -->
            <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition-shadow duration-300">
                <div class="relative">
                    <img src="https://source.unsplash.com/random/300x200/?art" alt="Video thumbnail" class="w-full h-48 object-cover">
                    <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
                        <span class="text-white text-sm">12:34</span>
                    </div>
                    <div class="video-overlay absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 transition-opacity duration-300">
                        <button class="bg-white bg-opacity-80 rounded-full p-3 hover:bg-opacity-100">
                            <i class="fas fa-play text-purple-600"></i>
                        </button>
                    </div>
                </div>
                <div class="p-4">
                    <div class="flex items-start space-x-3">
                        <img src="https://source.unsplash.com/random/40x40/?portrait" alt="Channel" class="w-10 h-10 rounded-full">
                        <div>
                            <h4 class="font-medium line-clamp-2">Мастер-класс по акварельной живописи для начинающих</h4>
                            <p class="text-gray-600 text-sm">Art School</p>
                            <p class="text-gray-500 text-xs">245K просмотров · 2 дня назад</p>
                        </div>
                    </div>
                </div>
            </div>

            <!-- Video Card 2 -->
            <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition-shadow duration-300">
                <div class="relative">
                    <img src="https://source.unsplash.com/random/300x200/?photography" alt="Video thumbnail" class="w-full h-48 object-cover">
                    <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
                        <span class="text-white text-sm">08:21</span>
                    </div>
                    <div class="video-overlay absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 transition-opacity duration-300">
                        <button class="bg-white bg-opacity-80 rounded-full p-3 hover:bg-opacity-100">
                            <i class="fas fa-play text-purple-600"></i>
                        </button>
                    </div>
                </div>
                <div class="p-4">
                    <div class="flex items-start space-x-3">
                        <img src="https://source.unsplash.com/random/40x40/?artist" alt="Channel" class="w-10 h-10 rounded-full">
                        <div>
                            <h4 class="font-medium line-clamp-2">10 советов по композиции в фотографии</h4>
                            <p class="text-gray-600 text-sm">Photo Pro</p>
                            <p class="text-gray-500 text-xs">189K просмотров · 1 неделя назад</p>
                        </div>
                    </div>
                </div>
            </div>

            <!-- Video Card 3 -->
            <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition-shadow duration-300">
                <div class="relative">
                    <img src="https://source.unsplash.com/random/300x200/?digitalart" alt="Video thumbnail" class="w-full h-48 object-cover">
                    <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
                        <span class="text-white text-sm">15:47</span>
                    </div>
                    <div class="video-overlay absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 transition-opacity duration-300">
                        <button class="bg-white bg-opacity-80 rounded-full p-3 hover:bg-opacity-100">
                            <i class="fas fa-play text-purple-600"></i>
                        </button>
                    </div>
                </div>
                <div class="p-4">
                    <div class="flex items-start space-x-3">
                        <img src="https://source.unsplash.com/random/40x40/?designer" alt="Channel" class="w-10 h-10 rounded-full">
                        <div>
                            <h4 class="font-medium line-clamp-2">Создание персонажа в Adobe Illustrator с нуля</h4>
                            <p class="text-gray-600 text-sm">Digital Masters</p>
                            <p class="text-gray-500 text-xs">312K просмотров · 3 дня назад</p>
                        </div>
                    </div>
                </div>
            </div>

            <!-- Video Card 4 -->
            <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition-shadow duration-300">
                <div class="relative">
                    <img src="https://source.unsplash.com/random/300x200/?sculpture" alt="Video thumbnail" class="w-full h-48 object-cover">
                    <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
                        <span class="text-white text-sm">22:15</span>
                    </div>
                    <div class="video-overlay absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 transition-opacity duration-300">
                        <button class="bg-white bg-opacity-80 rounded-full p-3 hover:bg-opacity-100">
                            <i class="fas fa-play text-purple-600"></i>
                        </button>
                    </div>
                </div>
                <div class="p-4">
                    <div class="flex items-start space-x-3">
                        <img src="https://source.unsplash.com/random/40x40/?sculptor" alt="Channel" class="w-10 h-10 rounded-full">
                        <div>
                            <h4 class="font-medium line-clamp-2">Работа с глиной: основы лепки для начинающих</h4>
                            <p class="text-gray-600 text-sm">Clay Art Studio</p>
                            <p class="text-gray-500 text-xs">156K просмотров · 5 дней назад</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </main>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white py-12">
        <div class="container mx-auto px-4">
            <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
                <div>
                    <div class="flex items-center space-x-2 mb-4">
                        <i class="fas fa-palette text-2xl"></i>
                        <h3 class="text-xl font-bold">ArtVision</h3>
                    </div>
                    <p class="text-gray-400">Платформа для творческих людей со всего мира.</p>
                </div>
                <div>
                    <h4 class="text-lg font-medium mb-4">Навигация</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Главная</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Категории</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Тренды</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Подписки</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="text-lg font-medium mb-4">Помощь</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Правила</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Конфиденциальность</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Условия</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="text-lg font-medium mb-4">Соцсети</h4>
                    <div class="flex space-x-4">
                        <a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-purple-600">
                            <i class="fab fa-facebook-f"></i>
                        </a>
                        <a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-purple-600">
                            <i class="fab fa-twitter"></i>
                        </a>
                        <a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-purple-600">
                            <i class="fab fa-instagram"></i>
                        </a>
                        <a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-purple-600">
                            <i class="fab fa-youtube"></i>
                        </a>
                    </div>
                </div>
            </div>
            <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-500">
                <p>© 2023 ArtVision. Все права защищены.</p>
            </div>
        </div>
    </footer>

    <script>
        // Simple JavaScript for demo purposes
        document.addEventListener('DOMContentLoaded', function() {
            // You can add interactive functionality here
            console.log('ArtVision platform loaded');
            
            // Example: Toggle mobile menu (would need additional HTML)
            // const menuButton = document.querySelector('.menu-button');
            // const mobileMenu = document.querySelector('.mobile-menu');
            // menuButton.addEventListener('click', () => {
            //     mobileMenu.classList.toggle('hidden');
            // });
        });
    </script>
<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=Greats/arttt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>