-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.21 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>XiaoXiang - Votre assistant éléphant</title>
<link rel="icon" type="image/png" href="/prevor_logo.png" />
<link rel="stylesheet" href="/src/styles.css" />
</head>
<body>
<div id="app">
<div id="scene-container"></div>
<div id="chat-panel">
<div id="chat-header">
<h2>XiaoXiang</h2>
<p>Votre assistant éléphant pompier</p>
</div>
<div id="chat-messages">
<div class="message assistant">
<span class="bubble">Bonjour ! Je suis XiaoXiang, votre assistant éléphant pompier. Posez-moi vos questions !</span>
</div>
</div>
<form id="chat-form">
<input type="text" id="chat-input" placeholder="Posez votre question..." autocomplete="off" />
<button type="submit" id="send-btn">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M22 2L11 13M22 2l-7 20-4-9-9-4 20-7z"/>
</svg>
</button>
</form>
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>