otis123 commited on
Commit
5fd5aee
·
verified ·
1 Parent(s): 37ffdd7

recreate https://watchtivo.com/ and add your own professional twists, like hover effects - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +383 -18
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Tv
3
- emoji: 🔥
4
- colorFrom: indigo
5
- colorTo: purple
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: tv
3
+ emoji: 🐳
4
+ colorFrom: red
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,384 @@
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>WatchTiVo - The Ultimate Entertainment Experience</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <style>
14
+ .gradient-bg {
15
+ background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
16
+ }
17
+ .btn-hover {
18
+ transition: all 0.3s ease;
19
+ transform: translateY(0);
20
+ }
21
+ .btn-hover:hover {
22
+ transform: translateY(-3px);
23
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
24
+ }
25
+ .card-hover {
26
+ transition: all 0.3s ease;
27
+ }
28
+ .card-hover:hover {
29
+ transform: translateY(-5px);
30
+ box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
31
+ }
32
+ .nav-link {
33
+ position: relative;
34
+ }
35
+ .nav-link:after {
36
+ content: '';
37
+ position: absolute;
38
+ width: 0;
39
+ height: 2px;
40
+ bottom: -2px;
41
+ left: 0;
42
+ background-color: #4f46e5;
43
+ transition: width 0.3s ease;
44
+ }
45
+ .nav-link:hover:after {
46
+ width: 100%;
47
+ }
48
+ .feature-icon {
49
+ transition: all 0.3s ease;
50
+ }
51
+ .feature-card:hover .feature-icon {
52
+ transform: scale(1.1);
53
+ color: #4f46e5;
54
+ }
55
+ </style>
56
+ </head>
57
+ <body class="gradient-bg text-white font-sans">
58
+ <!-- Navigation -->
59
+ <nav class="container mx-auto px-6 py-4">
60
+ <div class="flex justify-between items-center">
61
+ <div class="flex items-center space-x-2">
62
+ <i data-feather="tv" class="text-indigo-500 w-8 h-8"></i>
63
+ <span class="text-2xl font-bold">Watch<span class="text-indigo-500">TiVo</span></span>
64
+ </div>
65
+ <div class="hidden md:flex space-x-8">
66
+ <a href="#" class="nav-link">Home</a>
67
+ <a href="#" class="nav-link">Features</a>
68
+ <a href="#" class="nav-link">Pricing</a>
69
+ <a href="#" class="nav-link">Support</a>
70
+ </div>
71
+ <div class="flex items-center space-x-4">
72
+ <a href="#" class="px-4 py-2 rounded-md hover:bg-indigo-700 transition">Sign In</a>
73
+ <a href="#" class="px-6 py-2 bg-indigo-600 rounded-md btn-hover">Get Started</a>
74
+ </div>
75
+ <button class="md:hidden">
76
+ <i data-feather="menu"></i>
77
+ </button>
78
+ </div>
79
+ </nav>
80
+
81
+ <!-- Hero Section -->
82
+ <section class="container mx-auto px-6 py-20">
83
+ <div class="flex flex-col md:flex-row items-center">
84
+ <div class="md:w-1/2 mb-10 md:mb-0" data-aos="fade-right">
85
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">
86
+ The Future of Entertainment <span class="text-indigo-400">Starts Here</span>
87
+ </h1>
88
+ <p class="text-lg text-gray-300 mb-8">
89
+ Experience seamless streaming with WatchTiVo. Unlimited shows, movies, and live TV at your fingertips.
90
+ </p>
91
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
92
+ <a href="#" class="px-8 py-3 bg-indigo-600 rounded-md text-center btn-hover">
93
+ Start Free Trial
94
+ </a>
95
+ <a href="#" class="px-8 py-3 border border-indigo-500 rounded-md text-center hover:bg-indigo-900 transition">
96
+ Learn More
97
+ </a>
98
+ </div>
99
+ </div>
100
+ <div class="md:w-1/2" data-aos="fade-left">
101
+ <img src="http://static.photos/technology/1024x576/42" alt="WatchTiVo App" class="rounded-xl shadow-2xl card-hover">
102
+ </div>
103
+ </div>
104
+ </section>
105
+
106
+ <!-- Features Section -->
107
+ <section class="py-20 bg-gray-900">
108
+ <div class="container mx-auto px-6">
109
+ <div class="text-center mb-16" data-aos="fade-up">
110
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Why Choose WatchTiVo?</h2>
111
+ <p class="text-gray-400 max-w-2xl mx-auto">
112
+ Discover the features that make WatchTiVo the best choice for your entertainment needs.
113
+ </p>
114
+ </div>
115
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
116
+ <div class="bg-gray-800 p-8 rounded-xl feature-card" data-aos="fade-up" data-aos-delay="100">
117
+ <div class="w-16 h-16 bg-indigo-900 rounded-full flex items-center justify-center mb-6">
118
+ <i data-feather="play" class="feature-icon w-8 h-8 text-indigo-400"></i>
119
+ </div>
120
+ <h3 class="text-xl font-bold mb-3">Unlimited Streaming</h3>
121
+ <p class="text-gray-400">
122
+ Access thousands of shows and movies with no limits. Watch anytime, anywhere.
123
+ </p>
124
+ </div>
125
+ <div class="bg-gray-800 p-8 rounded-xl feature-card" data-aos="fade-up" data-aos-delay="200">
126
+ <div class="w-16 h-16 bg-indigo-900 rounded-full flex items-center justify-center mb-6">
127
+ <i data-feather="download" class="feature-icon w-8 h-8 text-indigo-400"></i>
128
+ </div>
129
+ <h3 class="text-xl font-bold mb-3">Offline Viewing</h3>
130
+ <p class="text-gray-400">
131
+ Download your favorite content and watch it offline without internet connection.
132
+ </p>
133
+ </div>
134
+ <div class="bg-gray-800 p-8 rounded-xl feature-card" data-aos="fade-up" data-aos-delay="300">
135
+ <div class="w-16 h-16 bg-indigo-900 rounded-full flex items-center justify-center mb-6">
136
+ <i data-feather="users" class="feature-icon w-8 h-8 text-indigo-400"></i>
137
+ </div>
138
+ <h3 class="text-xl font-bold mb-3">Multiple Profiles</h3>
139
+ <p class="text-gray-400">
140
+ Create up to 5 profiles with personalized recommendations for each family member.
141
+ </p>
142
+ </div>
143
+ </div>
144
+ </div>
145
+ </section>
146
+
147
+ <!-- Pricing Section -->
148
+ <section class="py-20">
149
+ <div class="container mx-auto px-6">
150
+ <div class="text-center mb-16" data-aos="fade-up">
151
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Simple, Transparent Pricing</h2>
152
+ <p class="text-gray-400 max-w-2xl mx-auto">
153
+ Choose the plan that fits your needs. Cancel anytime.
154
+ </p>
155
+ </div>
156
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
157
+ <div class="bg-gray-800 p-8 rounded-xl card-hover" data-aos="fade-up" data-aos-delay="100">
158
+ <h3 class="text-xl font-bold mb-4">Basic</h3>
159
+ <p class="text-4xl font-bold mb-6">$9.99<span class="text-lg text-gray-400">/month</span></p>
160
+ <ul class="space-y-3 mb-8">
161
+ <li class="flex items-center">
162
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
163
+ <span>1 Screen at a time</span>
164
+ </li>
165
+ <li class="flex items-center">
166
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
167
+ <span>HD Available</span>
168
+ </li>
169
+ <li class="flex items-center">
170
+ <i data-feather="x" class="w-5 h-5 text-red-500 mr-2"></i>
171
+ <span class="text-gray-500">4K Ultra HD</span>
172
+ </li>
173
+ <li class="flex items-center">
174
+ <i data-feather="x" class="w-5 h-5 text-red-500 mr-2"></i>
175
+ <span class="text-gray-500">Offline Viewing</span>
176
+ </li>
177
+ </ul>
178
+ <a href="#" class="block w-full py-3 bg-gray-700 hover:bg-gray-600 text-center rounded-md transition">Select Plan</a>
179
+ </div>
180
+ <div class="bg-indigo-900 p-8 rounded-xl relative card-hover" data-aos="fade-up" data-aos-delay="200">
181
+ <div class="absolute top-0 right-0 bg-indigo-700 text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg">POPULAR</div>
182
+ <h3 class="text-xl font-bold mb-4">Standard</h3>
183
+ <p class="text-4xl font-bold mb-6">$14.99<span class="text-lg text-indigo-300">/month</span></p>
184
+ <ul class="space-y-3 mb-8">
185
+ <li class="flex items-center">
186
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
187
+ <span>2 Screens at a time</span>
188
+ </li>
189
+ <li class="flex items-center">
190
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
191
+ <span>HD Available</span>
192
+ </li>
193
+ <li class="flex items-center">
194
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
195
+ <span>4K Ultra HD</span>
196
+ </li>
197
+ <li class="flex items-center">
198
+ <i data-feather="x" class="w-5 h-5 text-red-500 mr-2"></i>
199
+ <span class="text-indigo-300">Offline Viewing</span>
200
+ </li>
201
+ </ul>
202
+ <a href="#" class="block w-full py-3 bg-indigo-600 hover:bg-indigo-500 text-center rounded-md transition">Select Plan</a>
203
+ </div>
204
+ <div class="bg-gray-800 p-8 rounded-xl card-hover" data-aos="fade-up" data-aos-delay="300">
205
+ <h3 class="text-xl font-bold mb-4">Premium</h3>
206
+ <p class="text-4xl font-bold mb-6">$19.99<span class="text-lg text-gray-400">/month</span></p>
207
+ <ul class="space-y-3 mb-8">
208
+ <li class="flex items-center">
209
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
210
+ <span>4 Screens at a time</span>
211
+ </li>
212
+ <li class="flex items-center">
213
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
214
+ <span>HD Available</span>
215
+ </li>
216
+ <li class="flex items-center">
217
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
218
+ <span>4K Ultra HD</span>
219
+ </li>
220
+ <li class="flex items-center">
221
+ <i data-feather="check" class="w-5 h-5 text-green-500 mr-2"></i>
222
+ <span>Offline Viewing</span>
223
+ </li>
224
+ </ul>
225
+ <a href="#" class="block w-full py-3 bg-indigo-600 hover:bg-indigo-500 text-center rounded-md transition">Select Plan</a>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </section>
230
+
231
+ <!-- Testimonials -->
232
+ <section class="py-20 bg-gray-900">
233
+ <div class="container mx-auto px-6">
234
+ <div class="text-center mb-16" data-aos="fade-up">
235
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">What Our Users Say</h2>
236
+ <p class="text-gray-400 max-w-2xl mx-auto">
237
+ Don't just take our word for it. Here's what our subscribers have to say.
238
+ </p>
239
+ </div>
240
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
241
+ <div class="bg-gray-800 p-8 rounded-xl card-hover" data-aos="fade-up" data-aos-delay="100">
242
+ <div class="flex items-center mb-4">
243
+ <img src="http://static.photos/people/200x200/1" alt="User" class="w-12 h-12 rounded-full mr-4">
244
+ <div>
245
+ <h4 class="font-bold">Sarah Johnson</h4>
246
+ <div class="flex text-yellow-400">
247
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
248
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
249
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
250
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
251
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
252
+ </div>
253
+ </div>
254
+ </div>
255
+ <p class="text-gray-400">
256
+ "WatchTiVo has completely changed how I watch TV. The interface is intuitive and the content selection is amazing!"
257
+ </p>
258
+ </div>
259
+ <div class="bg-gray-800 p-8 rounded-xl card-hover" data-aos="fade-up" data-aos-delay="200">
260
+ <div class="flex items-center mb-4">
261
+ <img src="http://static.photos/people/200x200/2" alt="User" class="w-12 h-12 rounded-full mr-4">
262
+ <div>
263
+ <h4 class="font-bold">Michael Chen</h4>
264
+ <div class="flex text-yellow-400">
265
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
266
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
267
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
268
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
269
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
270
+ </div>
271
+ </div>
272
+ </div>
273
+ <p class="text-gray-400">
274
+ "The offline viewing feature is a game-changer for my commute. I can download shows and watch them on the subway."
275
+ </p>
276
+ </div>
277
+ <div class="bg-gray-800 p-8 rounded-xl card-hover" data-aos="fade-up" data-aos-delay="300">
278
+ <div class="flex items-center mb-4">
279
+ <img src="http://static.photos/people/200x200/3" alt="User" class="w-12 h-12 rounded-full mr-4">
280
+ <div>
281
+ <h4 class="font-bold">Emma Rodriguez</h4>
282
+ <div class="flex text-yellow-400">
283
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
284
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
285
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
286
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
287
+ <i data-feather="star" class="w-4 h-4"></i>
288
+ </div>
289
+ </div>
290
+ </div>
291
+ <p class="text-gray-400">
292
+ "Love the multiple profiles feature! My kids have their own space with age-appropriate content."
293
+ </p>
294
+ </div>
295
+ </div>
296
+ </div>
297
+ </section>
298
+
299
+ <!-- CTA Section -->
300
+ <section class="py-20">
301
+ <div class="container mx-auto px-6 text-center">
302
+ <div class="max-w-3xl mx-auto bg-gray-800 rounded-xl p-12 card-hover" data-aos="fade-up">
303
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Start Your Free Trial?</h2>
304
+ <p class="text-gray-400 mb-8">
305
+ Join millions of happy subscribers and experience entertainment like never before.
306
+ </p>
307
+ <a href="#" class="inline-block px-8 py-3 bg-indigo-600 rounded-md btn-hover">
308
+ Get Started - 7 Days Free
309
+ </a>
310
+ </div>
311
+ </div>
312
+ </section>
313
+
314
+ <!-- Footer -->
315
+ <footer class="bg-gray-900 py-12">
316
+ <div class="container mx-auto px-6">
317
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
318
+ <div>
319
+ <div class="flex items-center space-x-2 mb-4">
320
+ <i data-feather="tv" class="text-indigo-500 w-8 h-8"></i>
321
+ <span class="text-2xl font-bold">Watch<span class="text-indigo-500">TiVo</span></span>
322
+ </div>
323
+ <p class="text-gray-400 mb-4">
324
+ The ultimate entertainment experience for your home.
325
+ </p>
326
+ <div class="flex space-x-4">
327
+ <a href="#" class="text-gray-400 hover:text-white transition">
328
+ <i data-feather="facebook"></i>
329
+ </a>
330
+ <a href="#" class="text-gray-400 hover:text-white transition">
331
+ <i data-feather="twitter"></i>
332
+ </a>
333
+ <a href="#" class="text-gray-400 hover:text-white transition">
334
+ <i data-feather="instagram"></i>
335
+ </a>
336
+ <a href="#" class="text-gray-400 hover:text-white transition">
337
+ <i data-feather="youtube"></i>
338
+ </a>
339
+ </div>
340
+ </div>
341
+ <div>
342
+ <h3 class="text-lg font-bold mb-4">Company</h3>
343
+ <ul class="space-y-2">
344
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
345
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
346
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li>
347
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
348
+ </ul>
349
+ </div>
350
+ <div>
351
+ <h3 class="text-lg font-bold mb-4">Support</h3>
352
+ <ul class="space-y-2">
353
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li>
354
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
355
+ <li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li>
356
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Community</a></li>
357
+ </ul>
358
+ </div>
359
+ <div>
360
+ <h3 class="text-lg font-bold mb-4">Legal</h3>
361
+ <ul class="space-y-2">
362
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
363
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
364
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Cookie Policy</a></li>
365
+ <li><a href="#" class="text-gray-400 hover:text-white transition">GDPR</a></li>
366
+ </ul>
367
+ </div>
368
+ </div>
369
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
370
+ <p>© 2023 WatchTiVo. All rights reserved.</p>
371
+ </div>
372
+ </div>
373
+ </footer>
374
+
375
+ <script>
376
+ AOS.init({
377
+ duration: 800,
378
+ easing: 'ease-in-out',
379
+ once: true
380
+ });
381
+ feather.replace();
382
+ </script>
383
+ </body>
384
  </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ recreate https://watchtivo.com/ and add your own professional twists, like hover effects