diff --git a/app/src/assets/chat.ts b/app/src/assets/chat.ts
index bb5e548..d138d6d 100644
--- a/app/src/assets/chat.ts
+++ b/app/src/assets/chat.ts
@@ -1,4 +1,5 @@
-import {createIcons, Send, Stars} from "lucide"
+import {Bot, createIcons, UserRound, Send, Stars} from "lucide"
+import {useTranslations} from "../i18n/utils.ts"
import removeDiacritics from "./removeDiacritics.ts"
export type ResponseDictType = {
@@ -16,6 +17,8 @@ const doors = window.doors
const auth = window.auth
const doorAction = window.doorAction
+const t = useTranslations(lang)
+
const responses =
lang === "de"
? (await import("./chatDict_de")).default
@@ -25,19 +28,51 @@ const responses =
const sortedResponses = responses.sort(
(a, b) => b.priority - a.priority)
+const chatAvatar = `
+
+
+ ${lang === 'uwu' ? '🥺' : ''}
+
+
+`
+
+const chatHeader = `
+
+`
+
+const chatAvatarUser = `
+
+
+ ${lang === 'uwu' ? '🥺' : ''}
+
+
+`
+
+const chatHeaderUser = `
+
+`
+
+const chatWait = `
+
+ ${chatAvatar}
+ ${chatHeader}
+
+
+
+
+`
+
const templateInjectChat = `
-
-
+
+
-
-
-
-
+
+