feat(chat): added base for chat service

added front html

nigel in the mud

route function with openapi - gen

clean up the code a little

after pull request
This commit is contained in:
NigeParis 2025-11-11 10:02:05 +01:00 committed by Maix0
parent 73a4946d17
commit 9ce9fa44e4
122 changed files with 9354 additions and 2615 deletions

View file

@ -0,0 +1,90 @@
@import "tailwindcss";
.btn-style {
@apply
w-[100px]
h-[32px]
border-2 border-black
rounded-3xl
hover:bg-blue-200
text-black
cursor-pointer;
}
.send-btn-style {
@apply
w-[50px]
h-[50px]
border-2 border-black
rounded-3xl
hover:bg-blue-200
text-black
cursor-pointer;
}
.chatbox-style {
@apply
w-[600px]
h-[150px] /* increase height if needed */
p-[10px]
border-1 border-black
shadow-sm
text-left
text-gray-800
rounded-3xl
overflow-y-auto
whitespace-pre-line
flex
flex-col
mx-auto;
}
.chat-window-style {
@apply
w-[400px]
h-[50px]
p-[10px]
border-1 border-black
shadow-sm
rounded-3xl
text-gray-800;
}
.displaybox {
@apply
fixed
inset-0
flex
items-center
justify-center
bg-gray-100;
}
.mainboxDisplay {
@apply
fixed
top-1/2
left-1/2
-translate-x-1/2
-translate-y-1/2
bg-white w-[650px]
p-6 rounded-xl
shadow-2xl
text-center z-50;
}
p {
@apply
text-black
}
.div-test {
@apply
italic
}

View file

@ -0,0 +1,2 @@
import './chat.css';