StreamAI / index.html
privateuserh's picture
Update index.html
aa4345c verified
raw
history blame
2.48 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StreamAI - Personalized Streaming Recommendations</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">
<link rel="stylesheet" href="styles/main.css">
</head>
<body class="bg-gray-100 font-sans">
<header class="gradient-bg text-white shadow-lg">
</header>
<section class="gradient-bg text-white py-16">
</section>
<section class="py-12 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Your Personal Streaming Assistant</h2>
<div class="max-w-4xl mx-auto bg-gray-50 rounded-xl shadow-lg overflow-hidden">
<div class="h-96 overflow-y-auto p-4 space-y-4" id="chat-messages">
<div class="chat-bubble ai-bubble p-4 w-3/4"><p>Hi there! What are you in the mood for?</p></div>
</div>
<div class="border-t border-gray-200 p-4 bg-white">
<div class="flex items-center">
<input type="text" id="user-input" placeholder="Type your message..." class="flex-1 border-gray-300 rounded-full py-3 px-4">
<button id="send-btn" class="ml-3 w-12 h-12 rounded-full bg-indigo-600 text-white">Send</button>
</div>
</div>
</div>
</div>
</section>
<section class="py-12 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-6 text-gray-800">Recommended For You</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4" id="recommendations-container">
</div>
</div>
</section>
<div class="production-button" id="production-button"><i class="fas fa-video"></i></div>
<div class="production-panel" id="production-panel">
<h3 class="font-bold text-lg mb-4">Create Video Clips</h3>
<button id="start-recording" class="bg-red-500 hover:bg-red-600 text-white px-4 py-2 rounded-full text-sm">Start Recording</button>
</div>
<footer class="bg-gray-800 text-white py-12">
</footer>
<script src="scripts/app.js" type="module"></script>
</body>
</html>