/* * Copyright © 2024 Hexastack. All rights reserved. * * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. * 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file). */ import ChatIcon from "@mui/icons-material/Chat"; import { Avatar, Box, Typography } from "@mui/material"; import UiChatWidget from "hexabot-widget/src/UiChatWidget"; import { ReactElement } from "react"; import { useTranslation } from "react-i18next"; import { getAvatarSrc } from "@/components/inbox/helpers/mapMessages"; import { VisualEditor } from "@/components/visual-editor"; import { useConfig } from "@/hooks/useConfig"; import i18n from "@/i18n/config"; import { Layout } from "@/layout"; import { EntityType } from "@/services/types"; const CustomWidgetHeader = () => { const { t } = useTranslation(); return ( {t("title.live_chat_tester")} ); }; const VisualEditorPage = () => { const { apiUrl } = useConfig(); return ( <> ( )} /> ); }; VisualEditorPage.getLayout = function getLayout(page: ReactElement) { return {page}; }; export default VisualEditorPage;