abcd2019 commited on
Commit
e688d26
·
verified ·
1 Parent(s): 48488fd

recreate pornhub home page - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +290 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ddd
3
- emoji: 🔥
4
- colorFrom: indigo
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: ddd
3
+ emoji: 🐳
4
+ colorFrom: red
5
  colorTo: green
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,290 @@
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>StreamHub - Video Sharing Platform</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
+ </head>
10
+ <body class="bg-gray-900 text-white">
11
+ <!-- Header -->
12
+ <header class="bg-black py-2 px-4 sticky top-0 z-50 shadow-lg">
13
+ <div class="container mx-auto flex items-center justify-between">
14
+ <!-- Logo -->
15
+ <div class="flex items-center">
16
+ <div class="text-red-500 font-bold text-2xl mr-2">Stream</div>
17
+ <div class="bg-red-500 text-white px-1 py-1 font-bold">HUB</div>
18
+ </div>
19
+
20
+ <!-- Search Bar -->
21
+ <div class="hidden md:flex flex-grow mx-8">
22
+ <div class="relative w-full">
23
+ <input type="text" placeholder="Search videos..." class="w-full bg-gray-800 text-white px-4 py-2 rounded-l-full focus:outline-none">
24
+ <button class="absolute right-0 top-0 bg-gray-700 text-white px-5 py-2 rounded-r-full hover:bg-gray-600">
25
+ <i class="fas fa-search"></i>
26
+ </button>
27
+ </div>
28
+ </div>
29
+
30
+ <!-- Auth Buttons -->
31
+ <div class="flex items-center space-x-4">
32
+ <button class="hidden md:block bg-transparent border border-white px-4 py-1 rounded hover:bg-white hover:text-black transition">Upload</button>
33
+ <button class="bg-red-600 px-4 py-1 rounded hover:bg-red-700 transition">Login</button>
34
+ <button class="hidden md:block bg-gray-200 text-black px-4 py-1 rounded hover:bg-gray-300 transition">Sign Up</button>
35
+ </div>
36
+ </div>
37
+ </header>
38
+
39
+ <!-- Mobile Search -->
40
+ <div class="md:hidden bg-gray-800 p-2">
41
+ <div class="relative">
42
+ <input type="text" placeholder="Search videos..." class="w-full bg-gray-700 text-white px-4 py-2 rounded-full focus:outline-none">
43
+ <button class="absolute right-3 top-2 text-gray-400">
44
+ <i class="fas fa-search"></i>
45
+ </button>
46
+ </div>
47
+ </div>
48
+
49
+ <!-- Main Container -->
50
+ <div class="container mx-auto px-4 py-6 flex flex-col md:flex-row">
51
+ <!-- Sidebar -->
52
+ <aside class="hidden md:block w-64 pr-4">
53
+ <nav class="space-y-2">
54
+ <a href="#" class="flex items-center px-3 py-2 bg-gray-800 rounded hover:bg-gray-700">
55
+ <i class="fas fa-home mr-3 text-red-500"></i>
56
+ Home
57
+ </a>
58
+ <a href="#" class="flex items-center px-3 py-2 rounded hover:bg-gray-800">
59
+ <i class="fas fa-fire mr-3"></i>
60
+ Trending
61
+ </a>
62
+ <a href="#" class="flex items-center px-3 py-2 rounded hover:bg-gray-800">
63
+ <i class="fas fa-users mr-3"></i>
64
+ Channels
65
+ </a>
66
+ <a href="#" class="flex items-center px-3 py-2 rounded hover:bg-gray-800">
67
+ <i class="fas fa-clock mr-3"></i>
68
+ History
69
+ </a>
70
+ <a href="#" class="flex items-center px-3 py-2 rounded hover:bg-gray-800">
71
+ <i class="fas fa-thumbs-up mr-3"></i>
72
+ Liked Videos
73
+ </a>
74
+ </nav>
75
+
76
+ <div class="mt-8">
77
+ <h3 class="text-lg font-semibold px-3 py-2 border-b border-gray-700">Categories</h3>
78
+ <div class="mt-2 grid grid-cols-2 gap-2">
79
+ <a href="#" class="bg-gray-800 px-3 py-2 rounded text-sm hover:bg-gray-700">Music</a>
80
+ <a href="#" class="bg-gray-800 px-3 py-2 rounded text-sm hover:bg-gray-700">Gaming</a>
81
+ <a href="#" class="bg-gray-800 px-3 py-2 rounded text-sm hover:bg-gray-700">Sports</a>
82
+ <a href="#" class="bg-gray-800 px-3 py-2 rounded text-sm hover:bg-gray-700">News</a>
83
+ <a href="#" class="bg-gray-800 px-3 py-2 rounded text-sm hover:bg-gray-700">Movies</a>
84
+ <a href="#" class="bg-gray-800 px-3 py-2 rounded text-sm hover:bg-gray-700">Education</a>
85
+ </div>
86
+ </div>
87
+ </aside>
88
+
89
+ <!-- Main Content -->
90
+ <main class="flex-1">
91
+ <!-- Hero Banner -->
92
+ <div class="bg-gradient-to-r from-purple-900 to-red-900 rounded-lg p-6 mb-6">
93
+ <h1 class="text-2xl md:text-3xl font-bold mb-3">Upload and share your videos with the world</h1>
94
+ <p class="text-gray-300 mb-4">Join millions of users and start streaming today</p>
95
+ <button class="bg-red-600 px-6 py-2 rounded font-semibold hover:bg-red-700">Get Started</button>
96
+ </div>
97
+
98
+ <!-- Videos Section -->
99
+ <section class="mb-8">
100
+ <h2 class="text-xl font-semibold mb-4 flex items-center">
101
+ <i class="fas fa-fire text-red-500 mr-2"></i> Trending Videos
102
+ </h2>
103
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
104
+ <!-- Video Thumbnail 1 -->
105
+ <div class="bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition cursor-pointer">
106
+ <div class="relative">
107
+ <img src="https://via.placeholder.com/320x180" alt="Video thumbnail" class="w-full">
108
+ <span class="absolute bottom-2 right-2 bg-black bg-opacity-70 px-2 py-1 text-sm rounded">10:30</span>
109
+ </div>
110
+ <div class="p-3">
111
+ <div class="flex">
112
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
113
+ <div>
114
+ <h3 class="font-medium line-clamp-2">Amazing sunset timelapse at the beach with relaxing sounds</h3>
115
+ <p class="text-sm text-gray-400">Nature Channel • 1.2M views • 3 days ago</p>
116
+ </div>
117
+ </div>
118
+ </div>
119
+ </div>
120
+
121
+ <!-- Video Thumbnail 2 -->
122
+ <div class="bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition cursor-pointer">
123
+ <div class="relative">
124
+ <img src="https://via.placeholder.com/320x180" alt="Video thumbnail" class="w-full">
125
+ <span class="absolute bottom-2 right-2 bg-black bg-opacity-70 px-2 py-1 text-sm rounded">15:45</span>
126
+ </div>
127
+ <div class="p-3">
128
+ <div class="flex">
129
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
130
+ <div>
131
+ <h3 class="font-medium line-clamp-2">How to make the perfect pasta in 15 minutes - Cooking tutorial</h3>
132
+ <p class="text-sm text-gray-400">Food Master • 856K views • 1 week ago</p>
133
+ </div>
134
+ </div>
135
+ </div>
136
+ </div>
137
+
138
+ <!-- Video Thumbnail 3 -->
139
+ <div class="bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition cursor-pointer">
140
+ <div class="relative">
141
+ <img src="https://via.placeholder.com/320x180" alt="Video thumbnail" class="w-full">
142
+ <span class="absolute bottom-2 right-2 bg-black bg-opacity-70 px-2 py-1 text-sm rounded">24:12</span>
143
+ </div>
144
+ <div class="p-3">
145
+ <div class="flex">
146
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
147
+ <div>
148
+ <h3 class="font-medium line-clamp-2">Gaming highlights from the latest tournament - Awesome plays!</h3>
149
+ <p class="text-sm text-gray-400">eSports TV • 3.4M views • 2 days ago</p>
150
+ </div>
151
+ </div>
152
+ </div>
153
+ </div>
154
+
155
+ <!-- Video Thumbnail 4 -->
156
+ <div class="bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition cursor-pointer">
157
+ <div class="relative">
158
+ <img src="https://via.placeholder.com/320x180" alt="Video thumbnail" class="w-full">
159
+ <span class="absolute bottom-2 right-2 bg-black bg-opacity-70 px-2 py-1 text-sm rounded">08:22</span>
160
+ </div>
161
+ <div class="p-3">
162
+ <div class="flex">
163
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
164
+ <div>
165
+ <h3 class="font-medium line-clamp-2">5 tips to improve your photography skills for beginners</h3>
166
+ <p class="text-sm text-gray-400">Photo Pro • 543K views • 5 days ago</p>
167
+ </div>
168
+ </div>
169
+ </div>
170
+ </div>
171
+ </div>
172
+ </section>
173
+
174
+ <!-- Recommended Videos -->
175
+ <section class="mb-8">
176
+ <h2 class="text-xl font-semibold mb-4 flex items-center">
177
+ <i class="fas fa-thumbs-up text-blue-500 mr-2"></i> Recommended For You
178
+ </h2>
179
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
180
+ <!-- Video Thumbnail 1 -->
181
+ <div class="bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition cursor-pointer">
182
+ <div class="relative">
183
+ <img src="https://via.placeholder.com/320x180" alt="Video thumbnail" class="w-full">
184
+ <span class="absolute bottom-2 right-2 bg-black bg-opacity-70 px-2 py-1 text-sm rounded">12:15</span>
185
+ </div>
186
+ <div class="p-3">
187
+ <div class="flex">
188
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
189
+ <div>
190
+ <h3 class="font-medium line-clamp-2">Morning workout routine for a productive day - Full guide</h3>
191
+ <p class="text-sm text-gray-400">Fitness Guru • 1.8M views • 4 days ago</p>
192
+ </div>
193
+ </div>
194
+ </div>
195
+ </div>
196
+
197
+ <!-- Video Thumbnail 2 -->
198
+ <div class="bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition cursor-pointer">
199
+ <div class="relative">
200
+ <img src="https://via.placeholder.com/320x180" alt="Video thumbnail" class="w-full">
201
+ <span class="absolute bottom-2 right-2 bg-black bg-opacity-70 px-2 py-1 text-sm rounded">18:32</span>
202
+ </div>
203
+ <div class="p-3">
204
+ <div class="flex">
205
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
206
+ <div>
207
+ <h3 class="font-medium line-clamp-2">The science behind black holes - Explained simply</h3>
208
+ <p class="text-sm text-gray-400">Space Explorer • 2.1M views • 1 week ago</p>
209
+ </div>
210
+ </div>
211
+ </div>
212
+ </div>
213
+
214
+ <!-- Video Thumbnail 3 -->
215
+ <div class="bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition cursor-pointer">
216
+ <div class="relative">
217
+ <img src="https://via.placeholder.com/320x180" alt="Video thumbnail" class="w-full">
218
+ <span class="absolute bottom-2 right-2 bg-black bg-opacity-70 px-2 py-1 text-sm rounded">06:45</span>
219
+ </div>
220
+ <div class="p-3">
221
+ <div class="flex">
222
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
223
+ <div>
224
+ <h3 class="font-medium line-clamp-2">Quick and easy makeup tutorial for beginners</h3>
225
+ <p class="text-sm text-gray-400">Beauty Tips • 987K views • 3 days ago</p>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </div>
230
+
231
+ <!-- Video Thumbnail 4 -->
232
+ <div class="bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition cursor-pointer">
233
+ <div class="relative">
234
+ <img src="https://via.placeholder.com/320x180" alt="Video thumbnail" class="w-full">
235
+ <span class="absolute bottom-2 right-2 bg-black bg-opacity-70 px-2 py-1 text-sm rounded">22:10</span>
236
+ </div>
237
+ <div class="p-3">
238
+ <div class="flex">
239
+ <img src="https://via.placeholder.com/40" alt="Channel" class="w-10 h-10 rounded-full mr-3">
240
+ <div>
241
+ <h3 class="font-medium line-clamp-2">Building a modern website from scratch - Full tutorial</h3>
242
+ <p class="text-sm text-gray-400">Dev Channel • 1.5M views • 2 weeks ago</p>
243
+ </div>
244
+ </div>
245
+ </div>
246
+ </div>
247
+ </div>
248
+ </section>
249
+ </main>
250
+ </div>
251
+
252
+ <!-- Footer -->
253
+ <footer class="bg-black py-8 px-4">
254
+ <div class="container mx-auto">
255
+ <div class="flex flex-col md:flex-row justify-between items-center">
256
+ <div class="flex items-center mb-4 md:mb-0">
257
+ <div class="text-red-500 font-bold text-2xl mr-2">Stream</div>
258
+ <div class="bg-red-500 text-white px-1 py-1 font-bold">HUB</div>
259
+ </div>
260
+
261
+ <div class="flex space-x-6 mb-4 md:mb-0">
262
+ <a href="#" class="text-gray-400 hover:text-white">About</a>
263
+ <a href="#" class="text-gray-400 hover:text-white">Terms</a>
264
+ <a href="#" class="text-gray-400 hover:text-white">Privacy</a>
265
+ <a href="#" class="text-gray-400 hover:text-white">Content Policy</a>
266
+ <a href="#" class="text-gray-400 hover:text-white">Feedback</a>
267
+ </div>
268
+
269
+ <div class="flex space-x-4">
270
+ <a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-facebook"></i></a>
271
+ <a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-twitter"></i></a>
272
+ <a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-instagram"></i></a>
273
+ <a href="#" class="text-gray-400 hover:text-white text-xl"><i class="fab fa-youtube"></i></a>
274
+ </div>
275
+ </div>
276
+ <div class="mt-6 text-center text-gray-500 text-sm">
277
+ &copy; 2023 StreamHub. All rights reserved.
278
+ </div>
279
+ </div>
280
+ </footer>
281
+
282
+ <script>
283
+ // Simple JavaScript to toggle mobile menu if needed
284
+ document.addEventListener('DOMContentLoaded', function() {
285
+ // Placeholder for any future JavaScript functionality
286
+ console.log('StreamHub loaded');
287
+ });
288
+ </script>
289
+ <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=abcd2019/ddd" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
290
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ recreate pornhub home page