MattGPT commited on
Commit
c034037
·
verified ·
1 Parent(s): 7b52a21

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +393 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Redtube
3
- emoji: 📉
4
- colorFrom: blue
5
- colorTo: red
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: redtube
3
+ emoji: 🐳
4
+ colorFrom: purple
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,393 @@
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>RedTube 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
+ .video-thumbnail {
11
+ transition: transform 0.3s ease;
12
+ }
13
+ .video-thumbnail:hover {
14
+ transform: scale(1.03);
15
+ }
16
+ .duration-badge {
17
+ background-color: rgba(0, 0, 0, 0.7);
18
+ }
19
+ .premium-badge {
20
+ background-color: #ff0000;
21
+ }
22
+ .nav-link:hover {
23
+ color: #ff0000;
24
+ }
25
+ .search-bar:focus {
26
+ outline: none;
27
+ box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.3);
28
+ }
29
+ .category-tag:hover {
30
+ background-color: #ff0000;
31
+ color: white;
32
+ }
33
+ .video-player {
34
+ background-color: #000;
35
+ }
36
+ ::-webkit-scrollbar {
37
+ width: 8px;
38
+ height: 8px;
39
+ }
40
+ ::-webkit-scrollbar-track {
41
+ background: #f1f1f1;
42
+ }
43
+ ::-webkit-scrollbar-thumb {
44
+ background: #ff0000;
45
+ border-radius: 4px;
46
+ }
47
+ </style>
48
+ </head>
49
+ <body class="bg-gray-100 text-gray-800">
50
+ <!-- Header -->
51
+ <header class="bg-white shadow-md sticky top-0 z-50">
52
+ <div class="container mx-auto px-4 py-3 flex items-center justify-between">
53
+ <!-- Logo -->
54
+ <div class="flex items-center">
55
+ <a href="#" class="text-2xl font-bold text-red-600 flex items-center">
56
+ <i class="fas fa-play-circle mr-2"></i>
57
+ <span>RedTube</span>
58
+ </a>
59
+ </div>
60
+
61
+ <!-- Search Bar -->
62
+ <div class="hidden md:flex flex-1 mx-8">
63
+ <div class="relative w-full">
64
+ <input type="text" placeholder="Search videos..."
65
+ class="w-full py-2 px-4 border border-gray-300 rounded-full search-bar focus:border-red-500">
66
+ <button class="absolute right-0 top-0 h-full px-4 text-gray-500 hover:text-red-500">
67
+ <i class="fas fa-search"></i>
68
+ </button>
69
+ </div>
70
+ </div>
71
+
72
+ <!-- User Controls -->
73
+ <div class="flex items-center space-x-4">
74
+ <button class="hidden md:block px-4 py-2 bg-red-600 text-white rounded-full hover:bg-red-700 transition">
75
+ <i class="fas fa-upload mr-2"></i> Upload
76
+ </button>
77
+ <button class="hidden md:block px-4 py-2 border border-gray-300 rounded-full hover:bg-gray-100 transition">
78
+ <i class="fas fa-user-plus mr-2"></i> Sign Up
79
+ </button>
80
+ <button class="px-3 py-1 text-gray-700 hover:text-red-600">
81
+ <i class="fas fa-bell text-xl"></i>
82
+ </button>
83
+ <button class="px-3 py-1 text-gray-700 hover:text-red-600">
84
+ <i class="fas fa-user-circle text-xl"></i>
85
+ </button>
86
+ <button class="md:hidden px-3 py-1 text-gray-700 hover:text-red-600">
87
+ <i class="fas fa-bars text-xl"></i>
88
+ </button>
89
+ </div>
90
+ </div>
91
+ </header>
92
+
93
+ <!-- Main Content -->
94
+ <main class="container mx-auto px-4 py-6">
95
+ <!-- Video Player Section -->
96
+ <section class="mb-8">
97
+ <div class="video-player rounded-lg overflow-hidden shadow-lg">
98
+ <div class="aspect-w-16 aspect-h-9 bg-black">
99
+ <div class="w-full h-96 flex items-center justify-center relative">
100
+ <div class="absolute inset-0 flex items-center justify-center">
101
+ <i class="fas fa-play-circle text-6xl text-red-600 opacity-70"></i>
102
+ </div>
103
+ <img src="https://via.placeholder.com/1280x720" alt="Video thumbnail" class="w-full h-full object-cover">
104
+ </div>
105
+ </div>
106
+ <div class="bg-white p-4">
107
+ <h1 class="text-2xl font-bold mb-2">Hot amateur couple having passionate sex</h1>
108
+ <div class="flex items-center justify-between mb-4">
109
+ <div class="flex items-center">
110
+ <span class="text-gray-600 mr-4"><i class="fas fa-eye mr-1"></i> 1.2M views</span>
111
+ <span class="text-gray-600 mr-4"><i class="fas fa-thumbs-up mr-1"></i> 24K</span>
112
+ <span class="text-gray-600"><i class="fas fa-comment mr-1"></i> 843</span>
113
+ </div>
114
+ <div class="flex items-center">
115
+ <button class="px-3 py-1 bg-gray-200 rounded-full mr-2 hover:bg-gray-300">
116
+ <i class="fas fa-share mr-1"></i> Share
117
+ </button>
118
+ <button class="px-3 py-1 bg-gray-200 rounded-full hover:bg-gray-300">
119
+ <i class="fas fa-ellipsis-h"></i>
120
+ </button>
121
+ </div>
122
+ </div>
123
+ <div class="flex items-center mb-4">
124
+ <img src="https://via.placeholder.com/50" alt="Channel" class="w-10 h-10 rounded-full mr-3">
125
+ <div>
126
+ <h3 class="font-semibold">Amateur Couple</h3>
127
+ <p class="text-sm text-gray-600">1.5M subscribers</p>
128
+ </div>
129
+ <button class="ml-auto px-4 py-2 bg-red-600 text-white rounded-full hover:bg-red-700">
130
+ Subscribe
131
+ </button>
132
+ </div>
133
+ <div class="bg-gray-100 p-3 rounded-lg">
134
+ <p class="text-gray-800">Published on May 15, 2023</p>
135
+ <p class="mt-2">Watch this hot amateur couple as they explore each other's bodies in this passionate lovemaking session. Full video available for premium members.</p>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </section>
140
+
141
+ <!-- Related Videos -->
142
+ <section>
143
+ <div class="flex items-center justify-between mb-6">
144
+ <h2 class="text-xl font-bold">Related Videos</h2>
145
+ <div class="flex space-x-2">
146
+ <button class="px-3 py-1 bg-gray-200 rounded-full hover:bg-gray-300">
147
+ <i class="fas fa-filter mr-1"></i> Filter
148
+ </button>
149
+ <button class="px-3 py-1 bg-gray-200 rounded-full hover:bg-gray-300">
150
+ <i class="fas fa-sort mr-1"></i> Sort
151
+ </button>
152
+ </div>
153
+ </div>
154
+
155
+ <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
156
+ <!-- Video Card 1 -->
157
+ <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
158
+ <div class="relative">
159
+ <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
160
+ <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">12:34</span>
161
+ <span class="premium-badge absolute top-2 left-2 text-white text-xs px-2 py-1 rounded">PREMIUM</span>
162
+ </div>
163
+ <div class="p-3">
164
+ <div class="flex">
165
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
166
+ <div>
167
+ <h3 class="font-semibold text-sm line-clamp-2">Busty blonde gets fucked hard in the kitchen</h3>
168
+ <p class="text-gray-600 text-xs">Hot Amateurs</p>
169
+ <p class="text-gray-600 text-xs">1.2M views • 3 days ago</p>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </div>
174
+
175
+ <!-- Video Card 2 -->
176
+ <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
177
+ <div class="relative">
178
+ <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
179
+ <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">8:21</span>
180
+ </div>
181
+ <div class="p-3">
182
+ <div class="flex">
183
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
184
+ <div>
185
+ <h3 class="font-semibold text-sm line-clamp-2">Step sister caught masturbating and fucked</h3>
186
+ <p class="text-gray-600 text-xs">Family Strokes</p>
187
+ <p class="text-gray-600 text-xs">2.7M views • 1 week ago</p>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- Video Card 3 -->
194
+ <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
195
+ <div class="relative">
196
+ <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
197
+ <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">25:14</span>
198
+ <span class="premium-badge absolute top-2 left-2 text-white text-xs px-2 py-1 rounded">PREMIUM</span>
199
+ </div>
200
+ <div class="p-3">
201
+ <div class="flex">
202
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
203
+ <div>
204
+ <h3 class="font-semibold text-sm line-clamp-2">Lesbian threesome with big tits and toys</h3>
205
+ <p class="text-gray-600 text-xs">Girls Way</p>
206
+ <p class="text-gray-600 text-xs">850K views • 2 days ago</p>
207
+ </div>
208
+ </div>
209
+ </div>
210
+ </div>
211
+
212
+ <!-- Video Card 4 -->
213
+ <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
214
+ <div class="relative">
215
+ <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
216
+ <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">18:07</span>
217
+ </div>
218
+ <div class="p-3">
219
+ <div class="flex">
220
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
221
+ <div>
222
+ <h3 class="font-semibold text-sm line-clamp-2">Massive cock destroys tight pussy in doggy</h3>
223
+ <p class="text-gray-600 text-xs">BBC Paradise</p>
224
+ <p class="text-gray-600 text-xs">1.8M views • 5 days ago</p>
225
+ </div>
226
+ </div>
227
+ </div>
228
+ </div>
229
+
230
+ <!-- Video Card 5 -->
231
+ <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
232
+ <div class="relative">
233
+ <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
234
+ <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">15:42</span>
235
+ </div>
236
+ <div class="p-3">
237
+ <div class="flex">
238
+ <img src="https://via.placeholder.com/40"alt="Channel" class="w-10 h-10 rounded-full mr-3">
239
+ <div>
240
+ <h3 class="font-semibold text-sm line-clamp-2">MILF teacher seduces young student after class</h3>
241
+ <p class="text-gray-600 text-xs">Moms Teach Sex</p>
242
+ <p class="text-gray-600 text-xs">3.1M views • 2 weeks ago</p>
243
+ </div>
244
+ </div>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Video Card 6 -->
249
+ <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
250
+ <div class="relative">
251
+ <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
252
+ <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">22:18</span>
253
+ <span class="premium-badge absolute top-2 left-2 text-white text-xs px-2 py-1 rounded">PREMIUM</span>
254
+ </div>
255
+ <div class="p-3">
256
+ <div class="flex">
257
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
258
+ <div>
259
+ <h3 class="font-semibold text-sm line-clamp-2">Hardcore anal with screaming orgasm</h3>
260
+ <p class="text-gray-600 text-xs">Anal Adventures</p>
261
+ <p class="text-gray-600 text-xs">1.5M views • 4 days ago</p>
262
+ </div>
263
+ </div>
264
+ </div>
265
+ </div>
266
+
267
+ <!-- Video Card 7 -->
268
+ <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
269
+ <div class="relative">
270
+ <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
271
+ <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">9:56</span>
272
+ </div>
273
+ <div class="p-3">
274
+ <div class="flex">
275
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
276
+ <div>
277
+ <h3 class="font-semibold text-sm line-clamp-2">Public flashing and outdoor sex with stranger</h3>
278
+ <p class="text-gray-600 text-xs">Public Agent</p>
279
+ <p class="text-gray-600 text-xs">2.3M views • 1 week ago</p>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </div>
284
+
285
+ <!-- Video Card 8 -->
286
+ <div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-lg transition video-thumbnail">
287
+ <div class="relative">
288
+ <img src="https://via.placeholder.com/300x169" alt="Video thumbnail" class="w-full h-40 object-cover">
289
+ <span class="duration-badge absolute bottom-2 right-2 text-white text-sm px-2 py-1 rounded">30:45</span>
290
+ </div>
291
+ <div class="p-3">
292
+ <div class="flex">
293
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
294
+ <div>
295
+ <h3 class="font-semibold text-sm line-clamp-2">VR Porn experience with multiple positions</h3>
296
+ <p class="text-gray-600 text-xs">Virtual Real Porn</p>
297
+ <p class="text-gray-600 text-xs">980K views • 3 days ago</p>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ </div>
302
+ </div>
303
+ </section>
304
+ </main>
305
+
306
+ <!-- Footer -->
307
+ <footer class="bg-gray-900 text-white py-8">
308
+ <div class="container mx-auto px-4">
309
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
310
+ <div>
311
+ <h3 class="text-xl font-bold mb-4">RedTube</h3>
312
+ <p class="text-gray-400 mb-4">The best free porn videos on the internet.</p>
313
+ <div class="flex space-x-4">
314
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
315
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
316
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
317
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
318
+ </div>
319
+ </div>
320
+ <div>
321
+ <h4 class="font-semibold mb-4">Categories</h4>
322
+ <ul class="space-y-2">
323
+ <li><a href="#" class="text-gray-400 hover:text-white">Amateur</a></li>
324
+ <li><a href="#" class="text-gray-400 hover:text-white">Anal</a></li>
325
+ <li><a href="#" class="text-gray-400 hover:text-white">Asian</a></li>
326
+ <li><a href="#" class="text-gray-400 hover:text-white">BBW</a></li>
327
+ <li><a href="#" class="text-gray-400 hover:text-white">Big Tits</a></li>
328
+ </ul>
329
+ </div>
330
+ <div>
331
+ <h4 class="font-semibold mb-4">Legal</h4>
332
+ <ul class="space-y-2">
333
+ <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
334
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
335
+ <li><a href="#" class="text-gray-400 hover:text-white">DMCA</a></li>
336
+ <li><a href="#" class="text-gray-400 hover:text-white">2257 Statement</a></li>
337
+ <li><a href="#" class="text-gray-400 hover:text-white">Content Removal</a></li>
338
+ </ul>
339
+ </div>
340
+ <div>
341
+ <h4 class="font-semibold mb-4">Help</h4>
342
+ <ul class="space-y-2">
343
+ <li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
344
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact Us</a></li>
345
+ <li><a href="#" class="text-gray-400 hover:text-white">Premium Membership</a></li>
346
+ <li><a href="#" class="text-gray-400 hover:text-white">Advertise</a></li>
347
+ <li><a href="#" class="text-gray-400 hover:text-white">Webmasters</a></li>
348
+ </ul>
349
+ </div>
350
+ </div>
351
+ <div class="border-t border-gray-800 mt-8 pt-6 text-center text-gray-500 text-sm">
352
+ <p>© 2023 RedTube. All rights reserved. All models are 18+ years old.</p>
353
+ </div>
354
+ </div>
355
+ </footer>
356
+
357
+ <script>
358
+ // Simple JavaScript for demonstration
359
+ document.addEventListener('DOMContentLoaded', function() {
360
+ // Mobile menu toggle would go here
361
+ // Video player controls would go here
362
+
363
+ // Example: Add click event to video thumbnails
364
+ const videoThumbnails = document.querySelectorAll('.video-thumbnail');
365
+ videoThumbnails.forEach(thumbnail => {
366
+ thumbnail.addEventListener('click', function() {
367
+ // In a real app, this would load the selected video
368
+ alert('Loading video...');
369
+ });
370
+ });
371
+
372
+ // Example: Search functionality
373
+ const searchInput = document.querySelector('.search-bar');
374
+ const searchButton = document.querySelector('.search-bar + button');
375
+
376
+ function performSearch() {
377
+ const query = searchInput.value.trim();
378
+ if (query) {
379
+ alert(`Searching for: ${query}`);
380
+ // In a real app, this would trigger a search request
381
+ }
382
+ }
383
+
384
+ searchButton.addEventListener('click', performSearch);
385
+ searchInput.addEventListener('keypress', function(e) {
386
+ if (e.key === 'Enter') {
387
+ performSearch();
388
+ }
389
+ });
390
+ });
391
+ </script>
392
+ <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=MattGPT/redtube" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
393
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Clone RedTube