Skip to content

Commit

Permalink
Update main.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
MastanSayyad committed Jun 22, 2024
1 parent 8e3b708 commit bf2f0e3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import Models from "./components/Models";
import Custom404 from "./components/Custom404";
import "./main.css";
import Privacy from "./components/Privacy";
import Licensing from "./components/licensing.jsx";
import Terms from "./components/Terms";
import ChatbotComponent from "./components/Chatbot"; // Import Chatbot
import Preloader from "./components/Preloader";
Expand Down Expand Up @@ -49,6 +50,7 @@ ReactDOM.createRoot(document.getElementById("root")).render(
<Route exact path='/ContactUs' element={<ContactUs />} />
<Route exact path='/Models' element={<Models />} />
<Route exact path='/privacy-policy' element={<Privacy />} />
<Route exact path='/licensing' element={<Licensing />} />
<Route exact path='/terms-and-conditions' element={<Terms />} />
<Route path='*' element={<Custom404 />} />
</Routes>
Expand Down

0 comments on commit bf2f0e3

Please sign in to comment.