Chat Widget (#10187)

### 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>
This commit is contained in:
Mohamed Mathari
2025-09-22 05:03:33 +02:00
committed by GitHub
parent d11b1628a1
commit 2e4295d5ca
6 changed files with 975 additions and 6 deletions

View File

@ -0,0 +1,27 @@
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;