### What problem does this PR solve? Add a chat widget. I'll probably need some assistance to get this ready for merge! ### Type of change - [x] New Feature (non-breaking change which adds functionality) Co-authored-by: Mohamed Mathari <nocodeventure@Mac-mini-van-Mohamed.fritz.box>
27 lines
525 B
TypeScript
27 lines
525 B
TypeScript
import FloatingChatWidget from '@/components/floating-chat-widget';
|
|
|
|
const ChatWidget = () => {
|
|
return (
|
|
<div
|
|
style={{
|
|
background: 'transparent',
|
|
margin: 0,
|
|
padding: 0,
|
|
}}
|
|
>
|
|
<style>{`
|
|
html, body {
|
|
background: transparent !important;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#root {
|
|
background: transparent !important;
|
|
}
|
|
`}</style>
|
|
<FloatingChatWidget />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ChatWidget;
|