Skip to content

Commit ba35855

Browse files
Merge pull request #289 from OmkarAKadam/feature/chatbot-widget
feat: Add chatbot help assistant widget (#180)
2 parents f0f1f86 + 681d02c commit ba35855

3 files changed

Lines changed: 695 additions & 1 deletion

File tree

src/App.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import ScrollProgressBar from "./components/ScrollProgressBar";
55
import ScrollNavigator from "./components/ScrollNavigator";
66
import { Toaster } from "react-hot-toast";
77
import Router from "./Routes/Router";
8+
import ThemeWrapper from "./context/ThemeContext";
9+
import ChatbotWidget from "./components/Chatbot/ChatbotWidget";
810

911
const FULLSCREEN_ROUTES = ["/signup", "/login"];
1012

@@ -25,6 +27,8 @@ function App() {
2527

2628
{!isFullscreen && <Footer />}
2729

30+
<ChatbotWidget />
31+
2832
<Toaster
2933
position="top-center"
3034
reverseOrder={false}
@@ -46,4 +50,4 @@ function App() {
4650
);
4751
}
4852

49-
export default App;
53+
export default App;

0 commit comments

Comments
 (0)