banao-tech commited on
Commit
42a0abe
·
verified ·
1 Parent(s): feed11f

Update frontend/index.html

Browse files
Files changed (1) hide show
  1. frontend/index.html +13 -6
frontend/index.html CHANGED
@@ -1,8 +1,10 @@
1
  <!DOCTYPE html>
2
  <html>
3
  <head>
 
4
  <title>AI Avatar</title>
5
- <link rel="stylesheet" href="style.css">
 
6
  <script type="importmap">
7
  {
8
  "imports": {
@@ -12,11 +14,16 @@
12
  }
13
  </script>
14
  </head>
 
15
  <body>
16
- <div id="ui">
17
- <input id="text" placeholder="Type something">
18
- <button id="speak">Speak</button>
19
- </div>
20
- <script type="module" src="app.js"></script>
 
 
 
 
21
  </body>
22
  </html>
 
1
  <!DOCTYPE html>
2
  <html>
3
  <head>
4
+ <meta charset="utf-8"/>
5
  <title>AI Avatar</title>
6
+ <link rel="stylesheet" href="style.css"/>
7
+
8
  <script type="importmap">
9
  {
10
  "imports": {
 
14
  }
15
  </script>
16
  </head>
17
+
18
  <body>
19
+ <div id="layout">
20
+ <div id="viewer"></div>
21
+ <div id="panel">
22
+ <textarea id="text" placeholder="Type something…"></textarea>
23
+ <button id="speak">Speak</button>
24
+ </div>
25
+ </div>
26
+
27
+ <script type="module" src="app.js"></script>
28
  </body>
29
  </html>