Spaces:
Running
Running
File size: 47,439 Bytes
0ce6849 | 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 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LiveStream Hub - Multi-Platform Restreaming</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>
/* Custom CSS for elements that can't be done with Tailwind */
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.stream-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.platform-selector input:checked + label {
border-color: #667eea;
background-color: #f0f4ff;
}
#streamPreview {
aspect-ratio: 16/9;
}
@media (max-width: 640px) {
.mobile-stack {
flex-direction: column;
}
}
</style>
</head>
<body class="bg-gray-50 min-h-screen">
<!-- Navigation -->
<nav class="gradient-bg text-white shadow-lg">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-broadcast-tower text-2xl"></i>
<span class="text-xl font-bold">LiveStream Hub</span>
</div>
<div class="hidden md:flex space-x-6">
<a href="#features" class="hover:text-gray-200 transition">Features</a>
<a href="#how-it-works" class="hover:text-gray-200 transition">How It Works</a>
<a href="#pricing" class="hover:text-gray-200 transition">Pricing</a>
<a href="#contact" class="hover:text-gray-200 transition">Contact</a>
</div>
<div class="flex items-center space-x-4">
<button class="bg-white text-indigo-600 px-4 py-2 rounded-full font-medium hover:bg-gray-100 transition">
Sign In
</button>
<button class="md:hidden" id="mobileMenuButton">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div class="md:hidden hidden bg-indigo-700 px-4 py-2" id="mobileMenu">
<div class="flex flex-col space-y-3">
<a href="#features" class="text-white hover:text-gray-200 transition">Features</a>
<a href="#how-it-works" class="text-white hover:text-gray-200 transition">How It Works</a>
<a href="#pricing" class="text-white hover:text-gray-200 transition">Pricing</a>
<a href="#contact" class="text-white hover:text-gray-200 transition">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg text-white py-16">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Restream to Multiple Platforms Simultaneously</h1>
<p class="text-xl mb-8">Broadcast your live streams to YouTube, Facebook, Twitch and more with one click. Reach wider audiences without the hassle.</p>
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-indigo-600 px-6 py-3 rounded-full font-bold hover:bg-gray-100 transition flex items-center justify-center">
<i class="fas fa-play-circle mr-2"></i> Start Streaming Now
</button>
<button class="border-2 border-white text-white px-6 py-3 rounded-full font-bold hover:bg-white hover:text-indigo-600 transition flex items-center justify-center">
<i class="fas fa-info-circle mr-2"></i> Learn More
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-full max-w-lg">
<div class="absolute -top-6 -left-6 w-32 h-32 bg-purple-300 rounded-full mix-blend-multiply filter blur-xl opacity-70"></div>
<div class="absolute -bottom-8 -right-8 w-32 h-32 bg-blue-300 rounded-full mix-blend-multiply filter blur-xl opacity-70"></div>
<div class="relative bg-white rounded-xl shadow-2xl overflow-hidden">
<div class="bg-gray-800 p-3 flex items-center">
<div class="flex space-x-2">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<div class="ml-4 text-sm text-gray-400">LiveStream Hub Dashboard</div>
</div>
<div class="p-4">
<div class="bg-gray-100 rounded-lg p-4">
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-red-100 text-red-800 px-3 py-1 rounded-full text-sm flex items-center">
<i class="fab fa-youtube mr-1"></i> YouTube
</span>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm flex items-center">
<i class="fab fa-facebook mr-1"></i> Facebook
</span>
<span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm flex items-center">
<i class="fab fa-twitch mr-1"></i> Twitch
</span>
<span class="bg-gray-100 text-gray-800 px-3 py-1 rounded-full text-sm flex items-center">
<i class="fas fa-plus mr-1"></i> More
</span>
</div>
<div class="bg-black rounded-lg overflow-hidden mb-4" id="streamPreview">
<!-- This would be replaced with actual video stream -->
<div class="w-full h-full flex items-center justify-center text-white bg-gray-900">
<div class="text-center">
<i class="fas fa-broadcast-tower text-4xl mb-2"></i>
<p>Live Stream Preview</p>
</div>
</div>
</div>
<div class="bg-green-500 text-white px-4 py-2 rounded-full text-center font-bold">
<i class="fas fa-circle mr-2 animate-pulse"></i> LIVE
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Powerful Features for Your Live Streams</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition stream-card">
<div class="text-indigo-600 mb-4">
<i class="fas fa-globe text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Multi-Platform Streaming</h3>
<p class="text-gray-600">Broadcast simultaneously to YouTube, Facebook, Twitch, and other platforms with a single stream.</p>
</div>
<!-- Feature 2 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition stream-card">
<div class="text-indigo-600 mb-4">
<i class="fas fa-mobile-alt text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Mobile Friendly</h3>
<p class="text-gray-600">Start and manage your streams directly from your Android or iOS device with our mobile-optimized interface.</p>
</div>
<!-- Feature 3 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition stream-card">
<div class="text-indigo-600 mb-4">
<i class="fas fa-chart-line text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Analytics Dashboard</h3>
<p class="text-gray-600">Track viewer statistics across all platforms in one centralized dashboard with real-time updates.</p>
</div>
<!-- Feature 4 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition stream-card">
<div class="text-indigo-600 mb-4">
<i class="fas fa-comments text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Unified Chat</h3>
<p class="text-gray-600">Monitor and respond to chat messages from all platforms in a single, unified interface.</p>
</div>
<!-- Feature 5 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition stream-card">
<div class="text-indigo-600 mb-4">
<i class="fas fa-sliders-h text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Custom RTMP</h3>
<p class="text-gray-600">Use your own RTMP server or our reliable infrastructure to broadcast to any destination.</p>
</div>
<!-- Feature 6 -->
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition stream-card">
<div class="text-indigo-600 mb-4">
<i class="fas fa-cloud text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Cloud Recording</h3>
<p class="text-gray-600">Automatically record your streams and save them to the cloud for later editing and distribution.</p>
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section id="how-it-works" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">How It Works</h2>
<div class="flex flex-col md:flex-row items-center mb-12 mobile-stack">
<div class="md:w-1/2 mb-8 md:mb-0">
<h3 class="text-2xl font-bold mb-4">1. Connect Your Platforms</h3>
<p class="text-gray-600 mb-4">Link your YouTube, Facebook, Twitch, or other streaming accounts to our platform with secure OAuth authentication.</p>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>No need to share passwords</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Revoke access anytime</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Supports multiple channels per platform</span>
</li>
</ul>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="bg-white p-6 rounded-xl shadow-md max-w-md">
<div class="flex flex-wrap gap-3 mb-4">
<div class="platform-selector">
<input type="radio" name="platform" id="youtube" class="hidden" checked>
<label for="youtube" class="cursor-pointer border-2 border-gray-200 rounded-lg p-3 flex items-center">
<i class="fab fa-youtube text-red-600 text-2xl mr-2"></i>
<span>YouTube</span>
</label>
</div>
<div class="platform-selector">
<input type="radio" name="platform" id="facebook" class="hidden">
<label for="facebook" class="cursor-pointer border-2 border-gray-200 rounded-lg p-3 flex items-center">
<i class="fab fa-facebook text-blue-600 text-2xl mr-2"></i>
<span>Facebook</span>
</label>
</div>
<div class="platform-selector">
<input type="radio" name="platform" id="twitch" class="hidden">
<label for="twitch" class="cursor-pointer border-2 border-gray-200 rounded-lg p-3 flex items-center">
<i class="fab fa-twitch text-purple-600 text-2xl mr-2"></i>
<span>Twitch</span>
</label>
</div>
<div class="platform-selector">
<input type="radio" name="platform" id="custom" class="hidden">
<label for="custom" class="cursor-pointer border-2 border-gray-200 rounded-lg p-3 flex items-center">
<i class="fas fa-server text-indigo-600 text-2xl mr-2"></i>
<span>Custom RTMP</span>
</label>
</div>
</div>
<button class="w-full bg-indigo-600 text-white py-3 rounded-lg font-bold hover:bg-indigo-700 transition">
<i class="fab fa-google mr-2"></i> Connect with Google
</button>
</div>
</div>
</div>
<div class="flex flex-col md:flex-row items-center mb-12 mobile-stack">
<div class="md:w-1/2 order-2 md:order-1 flex justify-center">
<div class="bg-white p-6 rounded-xl shadow-md max-w-md">
<div class="mb-4">
<label class="block text-gray-700 mb-2 font-medium">Stream Title</label>
<input type="text" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="My Awesome Live Stream">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2 font-medium">Description</label>
<textarea class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" rows="3" placeholder="Tell viewers about your stream..."></textarea>
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2 font-medium">Category</label>
<select class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
<option>Gaming</option>
<option>Education</option>
<option>Music</option>
<option>Just Chatting</option>
<option>Other</option>
</select>
</div>
</div>
</div>
<div class="md:w-1/2 mb-8 md:mb-0 order-1 md:order-2 md:pl-12">
<h3 class="text-2xl font-bold mb-4">2. Configure Your Stream</h3>
<p class="text-gray-600 mb-4">Set up your stream details once and we'll apply them to all connected platforms. Customize titles, descriptions, thumbnails, and more.</p>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Bulk edit or customize per platform</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Schedule streams in advance</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Set custom thumbnails</span>
</li>
</ul>
</div>
</div>
<div class="flex flex-col md:flex-row items-center mobile-stack">
<div class="md:w-1/2 mb-8 md:mb-0">
<h3 class="text-2xl font-bold mb-4">3. Go Live!</h3>
<p class="text-gray-600 mb-4">Start streaming from any device or software. Use our mobile app, OBS, Streamlabs, or any RTMP-compatible broadcaster.</p>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Mobile streaming directly from your phone</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Desktop streaming with OBS/XSplit</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Professional encoding options</span>
</li>
</ul>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="bg-white p-6 rounded-xl shadow-md max-w-md">
<div class="mb-4">
<label class="block text-gray-700 mb-2 font-medium">Stream Key</label>
<div class="flex">
<input type="text" class="flex-grow px-4 py-2 border border-gray-300 rounded-l-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" value="live_1234567890abcdef" readonly>
<button class="bg-gray-200 px-4 py-2 rounded-r-lg hover:bg-gray-300 transition">
<i class="fas fa-copy"></i>
</button>
</div>
<p class="text-sm text-gray-500 mt-1">Use this key in OBS or your streaming software</p>
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2 font-medium">RTMP URL</label>
<div class="flex">
<input type="text" class="flex-grow px-4 py-2 border border-gray-300 rounded-l-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" value="rtmp://live.livestreamhub.com/app" readonly>
<button class="bg-gray-200 px-4 py-2 rounded-r-lg hover:bg-gray-300 transition">
<i class="fas fa-copy"></i>
</button>
</div>
</div>
<button class="w-full bg-green-600 text-white py-3 rounded-lg font-bold hover:bg-green-700 transition flex items-center justify-center">
<i class="fas fa-circle mr-2 animate-pulse"></i> Start Streaming
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-4">Simple, Transparent Pricing</h2>
<p class="text-xl text-gray-600 text-center mb-12">Choose the plan that fits your streaming needs</p>
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Free Plan -->
<div class="border border-gray-200 rounded-xl shadow-sm overflow-hidden hover:shadow-lg transition">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Starter</h3>
<p class="text-gray-600 mb-6">Perfect for beginners and casual streamers</p>
<div class="mb-6">
<span class="text-4xl font-bold">$0</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>1 platform at a time</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>720p max resolution</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>2 hours streaming per day</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Basic analytics</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Mobile streaming</span>
</li>
</ul>
<button class="w-full border-2 border-indigo-600 text-indigo-600 py-2 rounded-lg font-bold hover:bg-indigo-50 transition">
Get Started
</button>
</div>
</div>
<!-- Pro Plan -->
<div class="border-2 border-indigo-600 rounded-xl shadow-lg overflow-hidden transform scale-105">
<div class="bg-indigo-600 text-white text-center py-2">
<span class="font-bold">MOST POPULAR</span>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Pro</h3>
<p class="text-gray-600 mb-6">For serious streamers and content creators</p>
<div class="mb-6">
<span class="text-4xl font-bold">$19</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Up to 3 platforms simultaneously</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>1080p resolution</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Unlimited streaming hours</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Advanced analytics</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Mobile & desktop streaming</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Cloud recording (5 hours)</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Priority support</span>
</li>
</ul>
<button class="w-full bg-indigo-600 text-white py-2 rounded-lg font-bold hover:bg-indigo-700 transition">
Upgrade Now
</button>
</div>
</div>
<!-- Business Plan -->
<div class="border border-gray-200 rounded-xl shadow-sm overflow-hidden hover:shadow-lg transition">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Enterprise</h3>
<p class="text-gray-600 mb-6">For professional broadcasters and agencies</p>
<div class="mb-6">
<span class="text-4xl font-bold">$99</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Unlimited platforms</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>4K resolution</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Unlimited streaming hours</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Premium analytics</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Mobile & desktop streaming</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Unlimited cloud recording</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>24/7 VIP support</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Custom RTMP destinations</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span>Team accounts</span>
</li>
</ul>
<button class="w-full border-2 border-indigo-600 text-indigo-600 py-2 rounded-lg font-bold hover:bg-indigo-50 transition">
Contact Sales
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">What Our Users Say</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center text-indigo-600 font-bold mr-4">
JD
</div>
<div>
<h4 class="font-bold">John D.</h4>
<p class="text-gray-500 text-sm">Gaming Streamer</p>
</div>
</div>
<p class="text-gray-600 mb-4">"LiveStream Hub has completely changed how I connect with my audience. Being able to stream to Twitch and YouTube at the same time has doubled my viewership!"</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center text-indigo-600 font-bold mr-4">
SM
</div>
<div>
<h4 class="font-bold">Sarah M.</h4>
<p class="text-gray-500 text-sm">Fitness Coach</p>
</div>
</div>
<p class="text-gray-600 mb-4">"As a fitness instructor, I love being able to stream my live classes to both Facebook and my custom membership site simultaneously. The mobile app makes it so easy!"</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center text-indigo-600 font-bold mr-4">
AK
</div>
<div>
<h4 class="font-bold">Alex K.</h4>
<p class="text-gray-500 text-sm">Business Owner</p>
</div>
</div>
<p class="text-gray-600 mb-4">"The analytics dashboard gives me incredible insights into where my viewers are coming from. The Enterprise plan was worth every penny for our marketing team."</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="gradient-bg text-white py-16">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Grow Your Audience?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Join thousands of streamers who are expanding their reach with multi-platform streaming.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
<button class="bg-white text-indigo-600 px-8 py-4 rounded-full font-bold hover:bg-gray-100 transition">
Start Your Free Trial
</button>
<button class="border-2 border-white text-white px-8 py-4 rounded-full font-bold hover:bg-white hover:text-indigo-600 transition">
Watch Demo
</button>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-12">
<h2 class="text-3xl font-bold mb-6">Contact Us</h2>
<p class="text-gray-600 mb-8">Have questions or need support? Our team is here to help you get the most out of your streaming experience.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="text-indigo-600 mr-4 mt-1">
<i class="fas fa-envelope text-xl"></i>
</div>
<div>
<h4 class="font-bold mb-1">Email</h4>
<p class="text-gray-600">support@livestreamhub.com</p>
</div>
</div>
<div class="flex items-start">
<div class="text-indigo-600 mr-4 mt-1">
<i class="fas fa-phone-alt text-xl"></i>
</div>
<div>
<h4 class="font-bold mb-1">Phone</h4>
<p class="text-gray-600">+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="text-indigo-600 mr-4 mt-1">
<i class="fas fa-comment-dots text-xl"></i>
</div>
<div>
<h4 class="font-bold mb-1">Live Chat</h4>
<p class="text-gray-600">Available 24/7 for Pro and Enterprise users</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-indigo-600 hover:bg-indigo-100 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-indigo-600 hover:bg-indigo-100 transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-indigo-600 hover:bg-indigo-100 transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-indigo-600 hover:bg-indigo-100 transition">
<i class="fab fa-youtube"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center text-indigo-600 hover:bg-indigo-100 transition">
<i class="fab fa-twitch"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-6 rounded-xl shadow-md">
<h3 class="text-xl font-bold mb-6">Send Us a Message</h3>
<form>
<div class="mb-4">
<label class="block text-gray-700 mb-2 font-medium">Name</label>
<input type="text" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2 font-medium">Email</label>
<input type="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2 font-medium">Subject</label>
<select class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
<option>General Inquiry</option>
<option>Technical Support</option>
<option>Sales Question</option>
<option>Feedback</option>
</select>
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2 font-medium">Message</label>
<textarea class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" rows="4"></textarea>
</div>
<button type="submit" class="w-full bg-indigo-600 text-white py-3 rounded-lg font-bold hover:bg-indigo-700 transition">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-broadcast-tower text-2xl"></i>
<span class="text-xl font-bold">LiveStream Hub</span>
</div>
<p class="text-gray-400">The easiest way to broadcast your live streams to multiple platforms simultaneously. Reach wider audiences with one click.</p>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Platforms</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">YouTube</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Facebook</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Twitch</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">LinkedIn</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Custom RTMP</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Tutorials</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Community</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Status</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
</ul>
</div>
</div>
<div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 LiveStream Hub. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-youtube"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitch"></i>
</a>
</div>
</div>
</div>
</footer>
<!-- Mobile Menu Toggle Script -->
<script>
document.getElementById('mobileMenuButton').addEventListener('click', function() {
const menu = document.getElementById('mobileMenu');
if (menu.classList.contains('hidden')) {
menu.classList.remove('hidden');
} else {
menu.classList.add('hidden');
}
});
// Simulate stream status toggle for demo purposes
const streamButton = document.querySelector('.bg-green-600');
const streamPreview = document.getElementById('streamPreview');
if (streamButton && streamPreview) {
streamButton.addEventListener('click', function() {
if (streamButton.textContent.includes('Start Streaming')) {
streamButton.innerHTML = '<i class="fas fa-circle mr-2 animate-pulse"></i> LIVE';
streamButton.classList.remove('bg-green-600', 'hover:bg-green-700');
streamButton.classList.add('bg-red-600', 'hover:bg-red-700');
streamPreview.innerHTML = '<div class="w-full h-full flex items-center justify-center text-white bg-gray-900"><div class="text-center"><i class="fas fa-broadcast-tower text-4xl mb-2 animate-pulse"></i><p>Live Stream Active</p></div></div>';
} else {
streamButton.innerHTML = '<i class="fas fa-play mr-2"></i> Start Streaming';
streamButton.classList.remove('bg-red-600', 'hover:bg-red-700');
streamButton.classList.add('bg-green-600', 'hover:bg-green-700');
streamPreview.innerHTML = '<div class="w-full h-full flex items-center justify-center text-white bg-gray-900"><div class="text-center"><i class="fas fa-broadcast-tower text-4xl mb-2"></i><p>Live Stream Preview</p></div></div>';
}
});
}
</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=gamingismam/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |