-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (46 loc) · 2.05 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HealthBuddy AI Assistant</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="chat-container">
<div class="chat-header">
<h1>HealthBuddy <span>AI Assistant</span></h1>
<div class="header-icons">
<i class="fas fa-heart pulse-icon"></i>
<i class="fas fa-notes-medical"></i>
</div>
</div>
<div class="messages-area" id="messagesArea">
<div class="initial-welcome">
<img src="ai-img.png" alt="HealthBuddy AI" class="welcome-avatar">
<div class="welcome-message">
<h2>Welcome to HealthBuddy AI</h2>
<p>I'm your personal health companion, ready to provide guidance on health and wellness topics. How can I assist you today?</p>
<small>Please note: I provide general health information and support, not medical diagnosis or treatment.</small>
</div>
</div>
</div>
<div class="prompt-section">
<div class="input-container">
<input type="text" id="prompt" placeholder="Ask your health-related question...">
<div class="input-actions">
<button id="image" class="action-btn" title="Upload health-related image">
<i class="fas fa-image"></i>
<input type="file" accept="image/*" hidden>
</button>
<button id="submit" class="action-btn" title="Send message">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
</div>
<script type="module" src="script.js"></script>
</body>
</html>