Backtun commited on
Commit
54bf5b7
·
verified ·
1 Parent(s): 7a6706d

Cambia el texto "YouTube" por "Conciencia" - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +352 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Redise O Youtube
3
- emoji: 😻
4
- colorFrom: indigo
5
- colorTo: yellow
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: redise-o-youtube
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: pink
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,352 @@
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>YouTube Clone</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
+ .sidebar-item:hover {
11
+ background-color: rgba(255,255,255,0.1);
12
+ }
13
+ .video-card:hover {
14
+ transform: scale(1.02);
15
+ }
16
+ .search-bar:focus-within {
17
+ border-color: #1C62B9;
18
+ }
19
+ .player-overlay {
20
+ background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
21
+ }
22
+ .scrollbar-hide::-webkit-scrollbar {
23
+ display: none;
24
+ }
25
+ </style>
26
+ </head>
27
+ <body class="bg-[#0f0f0f] text-white">
28
+ <!-- Header -->
29
+ <header class="fixed top-0 left-0 right-0 bg-[#0f0f0f] z-50 border-b border-[#303030]">
30
+ <div class="flex items-center justify-between px-4 py-2">
31
+ <!-- Left section -->
32
+ <div class="flex items-center">
33
+ <button class="p-2 rounded-full hover:bg-[#272727] mr-2">
34
+ <i class="fas fa-bars text-xl"></i>
35
+ </button>
36
+ <div class="flex items-center">
37
+ <i class="fab fa-youtube text-red-600 text-3xl mr-1"></i>
38
+ <span class="text-xl font-semibold">Conciencia</span>
39
+ </div>
40
+ </div>
41
+
42
+ <!-- Center section - Search bar -->
43
+ <div class="flex-1 max-w-2xl mx-4 hidden md:block">
44
+ <div class="flex items-center search-bar border border-[#303030] rounded-3xl overflow-hidden">
45
+ <input type="text" placeholder="Search" class="bg-transparent py-2 px-4 w-full focus:outline-none">
46
+ <button class="px-5 py-2 bg-[#222222] border-l border-[#303030]">
47
+ <i class="fas fa-search"></i>
48
+ </button>
49
+ </div>
50
+ </div>
51
+
52
+ <!-- Right section -->
53
+ <div class="flex items-center">
54
+ <button class="p-2 rounded-full hover:bg-[#272727] md:hidden mr-2">
55
+ <i class="fas fa-search text-xl"></i>
56
+ </button>
57
+ <button class="p-2 rounded-full hover:bg-[#272727] mr-2">
58
+ <i class="fas fa-microphone text-xl"></i>
59
+ </button>
60
+ <button class="p-2 rounded-full hover:bg-[#272727] mr-2">
61
+ <i class="fas fa-video text-xl"></i>
62
+ </button>
63
+ <button class="p-2 rounded-full hover:bg-[#272727] mr-2">
64
+ <i class="fas fa-bell text-xl"></i>
65
+ </button>
66
+ <button class="ml-2 px-4 py-1 rounded-full bg-[#1a73e8] hover:bg-[#1a6bd6] flex items-center">
67
+ <i class="fas fa-user-circle mr-2"></i>
68
+ <span>Sign in</span>
69
+ </button>
70
+ </div>
71
+ </div>
72
+
73
+ <!-- Mobile search bar -->
74
+ <div class="px-4 pb-2 md:hidden">
75
+ <div class="flex items-center search-bar border border-[#303030] rounded-3xl overflow-hidden">
76
+ <input type="text" placeholder="Search" class="bg-transparent py-2 px-4 w-full focus:outline-none">
77
+ <button class="px-5 py-2 bg-[#222222] border-l border-[#303030]">
78
+ <i class="fas fa-search"></i>
79
+ </button>
80
+ </div>
81
+ </div>
82
+ </header>
83
+
84
+ <!-- Main Content -->
85
+ <div class="flex pt-16">
86
+ <!-- Sidebar -->
87
+ <aside class="hidden md:block w-60 bg-[#0f0f0f] h-[calc(100vh-56px)] sticky top-16 overflow-y-auto scrollbar-hide">
88
+ <nav class="py-2">
89
+ <a href="#" class="flex items-center px-4 py-2 sidebar-item text-white">
90
+ <i class="fas fa-home mr-4 text-xl"></i>
91
+ <span>Home</span>
92
+ </a>
93
+ <a href="#" class="flex items-center px-4 py-2 sidebar-item">
94
+ <i class="fas fa-fire mr-4 text-xl"></i>
95
+ <span>Shorts</span>
96
+ </a>
97
+ <a href="#" class="flex items-center px-4 py-2 sidebar-item">
98
+ <i class="fas fa-bell mr-4 text-xl"></i>
99
+ <span>Subscriptions</span>
100
+ </a>
101
+ <hr class="border-[#303030] my-2">
102
+ <a href="#" class="flex items-center px-4 py-2 sidebar-item">
103
+ <i class="fas fa-user-circle mr-4 text-xl"></i>
104
+ <span>You</span>
105
+ </a>
106
+ <a href="#" class="flex items-center px-4 py-2 sidebar-item">
107
+ <i class="fas fa-history mr-4 text-xl"></i>
108
+ <span>History</span>
109
+ </a>
110
+ <hr class="border-[#303030] my-2">
111
+ <h3 class="px-4 py-2 text-gray-500 text-sm uppercase">Explore</h3>
112
+ <a href="#" class="flex items-center px-4 py-2 sidebar-item">
113
+ <i class="fas fa-music mr-4 text-xl"></i>
114
+ <span>Music</span>
115
+ </a>
116
+ <a href="#" class="flex items-center px-4 py-2 sidebar-item">
117
+ <i class="fas fa-gamepad mr-4 text-xl"></i>
118
+ <span>Gaming</span>
119
+ </a>
120
+ <a href="#" class="flex items-center px-4 py-2 sidebar-item">
121
+ <i class="fas fa-newspaper mr-4 text-xl"></i>
122
+ <span>News</span>
123
+ </a>
124
+ <a href="#" class="flex items-center px-4 py-2 sidebar-item">
125
+ <i class="fas fa-trophy mr-4 text-xl"></i>
126
+ <span>Sports</span>
127
+ </a>
128
+ </nav>
129
+ </aside>
130
+
131
+ <!-- Main Content Area -->
132
+ <main class="flex-1 p-4">
133
+ <!-- Video Player Section -->
134
+ <div class="mb-8">
135
+ <div class="relative w-full aspect-video bg-black rounded-xl overflow-hidden">
136
+ <!-- Video Placeholder -->
137
+ <div class="w-full h-full bg-gradient-to-br from-purple-900 to-blue-500 flex items-center justify-center">
138
+ <div class="text-center">
139
+ <i class="fab fa-youtube text-8xl text-red-600 mb-4"></i>
140
+ <p class="text-2xl font-semibold">Try searching to get started</p>
141
+ <p class="text-gray-300 mt-2">Start watching videos to help us build a feed of videos you'll love</p>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- Player Controls Overlay -->
146
+ <div class="absolute inset-0 player-overlay flex flex-col justify-between p-4">
147
+ <!-- Top Controls -->
148
+ <div class="flex justify-between">
149
+ <button class="bg-black bg-opacity-50 rounded-full p-2">
150
+ <i class="fas fa-arrow-left"></i>
151
+ </button>
152
+ <div class="flex">
153
+ <button class="bg-black bg-opacity-50 rounded-full p-2 mx-1">
154
+ <i class="fas fa-search"></i>
155
+ </button>
156
+ <button class="bg-black bg-opacity-50 rounded-full p-2 mx-1">
157
+ <i class="fas fa-ellipsis-v"></i>
158
+ </button>
159
+ </div>
160
+ </div>
161
+
162
+ <!-- Center Play Button -->
163
+ <div class="flex justify-center items-center">
164
+ <button class="bg-black bg-opacity-50 rounded-full p-4">
165
+ <i class="fas fa-play text-2xl"></i>
166
+ </button>
167
+ </div>
168
+
169
+ <!-- Bottom Controls -->
170
+ <div class="flex justify-between items-end">
171
+ <div>
172
+ <p class="text-sm">Info • Shopping</p>
173
+ </div>
174
+ <div class="flex">
175
+ <button class="bg-black bg-opacity-50 rounded-full p-2 mx-1">
176
+ <i class="fas fa-volume-mute"></i>
177
+ </button>
178
+ <button class="bg-black bg-opacity-50 rounded-full p-2 mx-1">
179
+ <i class="fas fa-expand"></i>
180
+ </button>
181
+ </div>
182
+ </div>
183
+ </div>
184
+
185
+ <!-- Playback Speed -->
186
+ <div class="absolute top-4 right-4 bg-black bg-opacity-70 px-3 py-1 rounded-full text-sm">
187
+ 2x
188
+ </div>
189
+
190
+ <!-- Playback Progress -->
191
+ <div class="absolute bottom-0 left-0 right-0 h-1 bg-gray-600">
192
+ <div class="h-full bg-red-600 w-1/3"></div>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Video Info -->
197
+ <div class="mt-4">
198
+ <h1 class="text-xl font-semibold">Welcome to YouTube - Start Your Journey</h1>
199
+ <div class="flex flex-wrap items-center justify-between mt-2">
200
+ <div class="flex items-center">
201
+ <div class="w-10 h-10 rounded-full bg-gradient-to-r from-purple-500 to-pink-500 mr-3"></div>
202
+ <div>
203
+ <p class="font-medium">YouTube Official</p>
204
+ <p class="text-gray-400 text-sm">15M subscribers</p>
205
+ </div>
206
+ <button class="ml-4 px-4 py-1 bg-[#272727] hover:bg-[#3f3f3f] rounded-full">Subscribe</button>
207
+ </div>
208
+ <div class="flex mt-2 md:mt-0">
209
+ <button class="flex items-center bg-[#272727] hover:bg-[#3f3f3f] rounded-l-full px-4 py-1">
210
+ <i class="fas fa-thumbs-up mr-2"></i> 2.5K
211
+ </button>
212
+ <button class="flex items-center bg-[#272727] hover:bg-[#3f3f3f] rounded-r-full border-l border-[#4a4a4a] px-4 py-1">
213
+ <i class="fas fa-thumbs-down mr-2"></i>
214
+ </button>
215
+ <button class="flex items-center bg-[#272727] hover:bg-[#3f3f3f] rounded-full px-4 py-1 ml-2">
216
+ <i class="fas fa-share mr-2"></i> Share
217
+ </button>
218
+ </div>
219
+ </div>
220
+ </div>
221
+ </div>
222
+
223
+ <!-- Recommendations Grid -->
224
+ <div>
225
+ <h2 class="text-xl font-semibold mb-4">Recommended</h2>
226
+ <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
227
+ <!-- Video Card 1 -->
228
+ <div class="video-card bg-[#181818] rounded-lg overflow-hidden transition-transform duration-200 cursor-pointer">
229
+ <div class="relative">
230
+ <div class="aspect-video bg-gradient-to-r from-blue-600 to-indigo-800"></div>
231
+ <span class="absolute bottom-1 right-1 bg-black bg-opacity-80 px-1 text-xs rounded">10:25</span>
232
+ </div>
233
+ <div class="p-3">
234
+ <div class="flex">
235
+ <div class="w-9 h-9 rounded-full bg-gradient-to-r from-yellow-500 to-red-500 mr-3 flex-shrink-0"></div>
236
+ <div>
237
+ <h3 class="font-medium line-clamp-2">How to create amazing UI designs with Tailwind CSS</h3>
238
+ <p class="text-gray-400 text-sm mt-1">Design Mastery</p>
239
+ <p class="text-gray-400 text-sm">245K views • 2 days ago</p>
240
+ </div>
241
+ </div>
242
+ </div>
243
+ </div>
244
+
245
+ <!-- Video Card 2 -->
246
+ <div class="video-card bg-[#181818] rounded-lg overflow-hidden transition-transform duration-200 cursor-pointer">
247
+ <div class="relative">
248
+ <div class="aspect-video bg-gradient-to-r from-green-600 to-teal-800"></div>
249
+ <span class="absolute bottom-1 right-1 bg-black bg-opacity-80 px-1 text-xs rounded">15:42</span>
250
+ </div>
251
+ <div class="p-3">
252
+ <div class="flex">
253
+ <div class="w-9 h-9 rounded-full bg-gradient-to-r from-purple-500 to-pink-500 mr-3 flex-shrink-0"></div>
254
+ <div>
255
+ <h3 class="font-medium line-clamp-2">Top 10 JavaScript tricks every developer should know</h3>
256
+ <p class="text-gray-400 text-sm mt-1">Code With Me</p>
257
+ <p class="text-gray-400 text-sm">512K views • 1 week ago</p>
258
+ </div>
259
+ </div>
260
+ </div>
261
+ </div>
262
+
263
+ <!-- Video Card 3 -->
264
+ <div class="video-card bg-[#181818] rounded-lg overflow-hidden transition-transform duration-200 cursor-pointer">
265
+ <div class="relative">
266
+ <div class="aspect-video bg-gradient-to-r from-red-600 to-orange-800"></div>
267
+ <span class="absolute bottom-1 right-1 bg-black bg-opacity-80 px-1 text-xs rounded">22:18</span>
268
+ </div>
269
+ <div class="p-3">
270
+ <div class="flex">
271
+ <div class="w-9 h-9 rounded-full bg-gradient-to-r from-blue-500 to-cyan-500 mr-3 flex-shrink-0"></div>
272
+ <div>
273
+ <h3 class="font-medium line-clamp-2">Building a responsive website from scratch</h3>
274
+ <p class="text-gray-400 text-sm mt-1">Web Dev Simplified</p>
275
+ <p class="text-gray-400 text-sm">1.2M views • 3 weeks ago</p>
276
+ </div>
277
+ </div>
278
+ </div>
279
+ </div>
280
+
281
+ <!-- Video Card 4 -->
282
+ <div class="video-card bg-[#181818] rounded-lg overflow-hidden transition-transform duration-200 cursor-pointer">
283
+ <div class="relative">
284
+ <div class="aspect-video bg-gradient-to-r from-indigo-600 to-purple-800"></div>
285
+ <span class="absolute bottom-1 right-1 bg-black bg-opacity-80 px-1 text-xs rounded">8:33</span>
286
+ </div>
287
+ <div class="p-3">
288
+ <div class="flex">
289
+ <div class="w-9 h-9 rounded-full bg-gradient-to-r from-yellow-400 to-orange-500 mr-3 flex-shrink-0"></div>
290
+ <div>
291
+ <h3 class="font-medium line-clamp-2">The future of web development - 2023 trends</h3>
292
+ <p class="text-gray-400 text-sm mt-1">Tech Insider</p>
293
+ <p class="text-gray-400 text-sm">876K views • 1 month ago</p>
294
+ </div>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </main>
301
+ </div>
302
+
303
+ <!-- Mobile Navigation -->
304
+ <nav class="fixed bottom-0 left-0 right-0 bg-[#0f0f0f] border-t border-[#303030] md:hidden">
305
+ <div class="flex justify-around py-2">
306
+ <a href="#" class="flex flex-col items-center text-red-600">
307
+ <i class="fas fa-home text-xl"></i>
308
+ <span class="text-xs mt-1">Home</span>
309
+ </a>
310
+ <a href="#" class="flex flex-col items-center text-gray-400">
311
+ <i class="fas fa-fire text-xl"></i>
312
+ <span class="text-xs mt-1">Shorts</span>
313
+ </a>
314
+ <a href="#" class="flex flex-col items-center text-gray-400">
315
+ <i class="fas fa-plus-circle text-2xl bg-white text-black rounded-full"></i>
316
+ </a>
317
+ <a href="#" class="flex flex-col items-center text-gray-400">
318
+ <i class="fas fa-bell text-xl"></i>
319
+ <span class="text-xs mt-1">Subscriptions</span>
320
+ </a>
321
+ <a href="#" class="flex flex-col items-center text-gray-400">
322
+ <i class="fas fa-user-circle text-xl"></i>
323
+ <span class="text-xs mt-1">You</span>
324
+ </a>
325
+ </div>
326
+ </nav>
327
+
328
+ <script>
329
+ // Simple toggle functionality for mobile sidebar
330
+ document.addEventListener('DOMContentLoaded', function() {
331
+ const menuBtn = document.querySelector('.fa-bars').closest('button');
332
+ const sidebar = document.querySelector('aside');
333
+
334
+ menuBtn.addEventListener('click', function() {
335
+ sidebar.classList.toggle('hidden');
336
+ sidebar.classList.toggle('md:block');
337
+ });
338
+
339
+ // Video card hover effect
340
+ const videoCards = document.querySelectorAll('.video-card');
341
+ videoCards.forEach(card => {
342
+ card.addEventListener('mouseenter', () => {
343
+ card.classList.add('transform');
344
+ });
345
+ card.addEventListener('mouseleave', () => {
346
+ card.classList.remove('transform');
347
+ });
348
+ });
349
+ });
350
+ </script>
351
+ <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=Backtun/redise-o-youtube" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
352
+ </html>