-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
93 lines (90 loc) · 3.86 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI-Gen-da</title>
<link rel="icon" type="image/svg+xml" href="aigenda_logo.svg">
<link rel="apple-touch-icon" href="aigenda_logo.svg">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/styles/github-dark.min.css">
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script>
</head>
<body>
<div id="main-container">
<div class="mobile-header">
<button id="mobile-menu">
<i class="fas fa-bars"></i>
</button>
<div class="logo-with-credits">
<h1 class="app-title">AI-Gen-da</h1>
</div>
</div>
<div id="chat-list">
<div class="logo-container">
<div class="logo-with-credits">
<div class="presents-line">
<img src="logo_mdb.png" alt="MongoDB" class="mongodb-logo"> presents
</div>
<h1 class="app-title">AI-Gen-da</h1>
<span class="credits">
powered by
<a href="https://www.mongodb.com/developer/products/atlas/typescript-bedrock-mongodb-agents/" target="_blank">AWS</a>
& <a href="https://buildship.app/remix/cff039a3-15ee-4638-ac59-21b0b8b93f1b" target="_blank">BuildShip</a>
</span>
<div class="qr-code-container">
<img src="qr_code.png" alt="Scan to visit this website" class="qr-code">
<span class="qr-code-label">Scan to chat</span>
</div>
</div>
<button id="close-sidebar" class="mobile-only">
<i class="fas fa-times"></i>
</button>
</div>
<button id="new-chat-btn">
<i class="fas fa-plus"></i> New Chat
</button>
<div class="chat-list-container">
<ul id="chat-items"></ul>
</div>
<button id="clear-chats-btn">
<i class="fas fa-trash"></i> Clear conversations
</button>
<div class="examples-section">
<h3 class="examples-title">Examples</h3>
<ul class="example-items">
<li class="example-item" data-example="mongodb">
<i class="fas fa-lightbulb"></i>
<span>MongoDB Sessions</span>
</li>
<li class="example-item" data-example="aws">
<i class="fas fa-lightbulb"></i>
<span>AWS Sessions</span>
</li>
</ul>
</div>
</div>
<div id="chat-container">
<div id="messages"></div>
<div id="loading-indicator" class="loading-indicator hidden">
<div class="typing-indicator">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div id="input-container">
<div class="input-wrapper">
<input type="text" id="user-input" placeholder="Send a message..." />
<button id="send-btn">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>