diff --git a/src/public/index.html b/src/public/index.html
index 8e48a79..b90d74f 100644
--- a/src/public/index.html
+++ b/src/public/index.html
@@ -1,272 +1,273 @@
-
-
-
-
-
-
-
-
-
-
- Voice Call with a voice bot
-
+
+
+
+
+
Voice Call with a Voice Bot
+
+
Status: Idle
+
Input:
+
---
+
Output:
+
---
+
+
+
+
-
-
-
+ function stopAudio() {
+ audioQueue = [];
+
+ // Clear the audio queue fade out
+ const fadeOut = setInterval(() => {
+ if (audioQueue.length > 0) {
+ audioQueue = audioQueue.slice(0, audioQueue.length - 1);
+ } else {
+ clearInterval(fadeOut);
+ }
+ }, 100);
+ }
+
+