File size: 2,482 Bytes
f52dfb4
 
 
 
 
da6d4a3
 
 
 
553afd6
da6d4a3
 
 
aa4345c
 
 
 
 
da6d4a3
 
aa4345c
 
 
 
 
da6d4a3
aa4345c
 
 
 
da6d4a3
 
 
 
 
aa4345c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6a27c33
f52dfb4
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
<!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>