Spaces:
Paused
Paused
Update frontend/index.html
Browse files- 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="
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
</
|
| 20 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>
|