quivr/frontend/app/chat/[chatId]/components/ChatHeader.tsx
Mamadou DICKO 80be40ad34
feat: update chat ui (#907)
* feat: remove react-mentions

* feat: add chat header

* feat: remove v2/chat

* feat: add fature flag

* feat: add new chat UI

* feat: add prompt and brain name to messages
2023-08-11 10:06:20 +02:00

30 lines
800 B
TypeScript

import { useTranslation } from "react-i18next";
import { useChatContext } from "@/lib/context";
export const ChatHeader = (): JSX.Element => {
const { t } = useTranslation(["chat"]);
const { history } = useChatContext();
if (history.length !== 0) {
return (
<h1 className="text-3xl font-bold text-center">
{t("chat_title_intro")}{" "}
<span className="text-purple-500">{t("brains")}</span>
</h1>
);
}
return (
<h1 className="text-3xl font-bold text-center">
{t("chat_title_intro")}{" "}
<span className="text-purple-500">{t("brains")}</span>
{" !! "}
<br />
{t("empty_brain_title_prefix")}{" "}
<span className="text-purple-500">{t("brain")}</span>{" "}
{t("empty_brain_title_suffix")}
</h1>
);
};