test / index.html
gamingismam's picture
Add 3 files
0ce6849 verified
Raw
History Blame Contribute Delete
47.4 kB
<!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>