Spaces:
Running
Running
Update index.html
Browse files- index.html +29 -18
index.html
CHANGED
@@ -11,44 +11,55 @@
|
|
11 |
<body class="bg-gray-100 font-sans">
|
12 |
|
13 |
<header class="gradient-bg text-white shadow-lg">
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
<section class="py-12 bg-white">
|
20 |
<div class="container mx-auto px-4">
|
21 |
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Your Personal Streaming Assistant</h2>
|
22 |
<div class="max-w-4xl mx-auto bg-gray-50 rounded-xl shadow-lg overflow-hidden">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
<div class="h-96 overflow-y-auto p-4 space-y-4" id="chat-messages">
|
24 |
-
|
25 |
</div>
|
26 |
<div class="border-t border-gray-200 p-4 bg-white">
|
27 |
<div class="flex items-center">
|
28 |
-
<input type="text" id="user-input" placeholder="Type your message..." class="flex-1 border-gray-300 rounded-full py-3 px-4">
|
29 |
-
<button id="send-btn" class="ml-3 w-12 h-12 rounded-full bg-indigo-600 text-white"
|
30 |
</div>
|
31 |
</div>
|
32 |
</div>
|
33 |
</div>
|
34 |
</section>
|
35 |
|
36 |
-
<section class="py-12 bg-gray-50">
|
37 |
-
<div class="container mx-auto px-4">
|
38 |
-
<h2 class="text-3xl font-bold text-center mb-6 text-gray-800">Recommended For You</h2>
|
39 |
-
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4" id="recommendations-container">
|
40 |
-
</div>
|
41 |
-
</div>
|
42 |
-
</section>
|
43 |
-
|
44 |
<div class="production-button" id="production-button"><i class="fas fa-video"></i></div>
|
45 |
<div class="production-panel" id="production-panel">
|
46 |
<h3 class="font-bold text-lg mb-4">Create Video Clips</h3>
|
47 |
-
<
|
48 |
-
</
|
|
|
49 |
|
50 |
<footer class="bg-gray-800 text-white py-12">
|
51 |
-
|
|
|
52 |
|
53 |
<script src="scripts/app.js" type="module"></script>
|
54 |
</body>
|
|
|
11 |
<body class="bg-gray-100 font-sans">
|
12 |
|
13 |
<header class="gradient-bg text-white shadow-lg">
|
14 |
+
<div class="container mx-auto px-4 py-6">
|
15 |
+
<div class="flex justify-between items-center">
|
16 |
+
<div class="flex items-center space-x-3">
|
17 |
+
<i class="fas fa-stream text-3xl"></i>
|
18 |
+
<h1 class="text-2xl font-bold">StreamAI</h1>
|
19 |
+
</div>
|
20 |
+
<nav class="hidden md:flex space-x-6">
|
21 |
+
<a href="#" class="hover:text-indigo-200 transition">Home</a>
|
22 |
+
<a href="#" class="hover:text-indigo-200 transition">Features</a>
|
23 |
+
<a href="#" class="hover:text-indigo-200 transition">About</a>
|
24 |
+
</nav>
|
25 |
+
</div>
|
26 |
+
</div>
|
27 |
+
</header>
|
28 |
|
29 |
<section class="py-12 bg-white">
|
30 |
<div class="container mx-auto px-4">
|
31 |
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Your Personal Streaming Assistant</h2>
|
32 |
<div class="max-w-4xl mx-auto bg-gray-50 rounded-xl shadow-lg overflow-hidden">
|
33 |
+
<div class="bg-indigo-600 text-white p-4 flex items-center">
|
34 |
+
<div class="w-10 h-10 rounded-full bg-indigo-400 flex items-center justify-center mr-3"><i class="fas fa-robot"></i></div>
|
35 |
+
<div>
|
36 |
+
<h3 class="font-semibold">StreamAI Assistant</h3>
|
37 |
+
<p class="text-xs text-indigo-200">Powered by Cloudflare Workers</p>
|
38 |
+
</div>
|
39 |
+
</div>
|
40 |
<div class="h-96 overflow-y-auto p-4 space-y-4" id="chat-messages">
|
41 |
+
<div class="chat-bubble ai-bubble p-4 w-3/4"><p>Hi there! What are you in the mood for?</p></div>
|
42 |
</div>
|
43 |
<div class="border-t border-gray-200 p-4 bg-white">
|
44 |
<div class="flex items-center">
|
45 |
+
<input type="text" id="user-input" placeholder="Type your message..." class="flex-1 border border-gray-300 rounded-full py-3 px-4 focus:outline-none focus:ring-2 focus:ring-indigo-500">
|
46 |
+
<button id="send-btn" class="ml-3 w-12 h-12 rounded-full bg-indigo-600 text-white hover:bg-indigo-700 flex items-center justify-center transition"><i class="fas fa-paper-plane"></i></button>
|
47 |
</div>
|
48 |
</div>
|
49 |
</div>
|
50 |
</div>
|
51 |
</section>
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
<div class="production-button" id="production-button"><i class="fas fa-video"></i></div>
|
54 |
<div class="production-panel" id="production-panel">
|
55 |
<h3 class="font-bold text-lg mb-4">Create Video Clips</h3>
|
56 |
+
<p class="text-sm text-gray-600 mb-4">Record your screen to create short clips.</p>
|
57 |
+
<button id="start-recording" class="bg-red-500 hover:bg-red-600 text-white px-4 py-2 rounded-full text-sm font-medium transition"><i class="fas fa-circle mr-1"></i> Start Recording</button>
|
58 |
+
</div>
|
59 |
|
60 |
<footer class="bg-gray-800 text-white py-12">
|
61 |
+
<div class="container mx-auto px-4 text-center"><p>© 2025 StreamAI. All rights reserved.</p></div>
|
62 |
+
</footer>
|
63 |
|
64 |
<script src="scripts/app.js" type="module"></script>
|
65 |
</body>
|