Skip to content

Commit

Permalink
Update App.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
MastanSayyad committed Jun 17, 2024
1 parent f0fd4d7 commit 1e99f3a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import HowItWorks from "./Pages/HowItWorks";
import InvestorManagementPage from "./Pages/InvestorManagementPage";
import FinancialServices from './Pages/FinancialServices'
import FullServiceFund from './Pages/FullServiceFund';
import FeedbackPage from './Pages/FeedbackForm';
import { PiSelectionInverseThin } from "react-icons/pi";
import Notfound from './Components/Notfound/Notfound';
import { useSelector } from 'react-redux';
Expand Down Expand Up @@ -72,6 +73,7 @@ const App = () => {
<Route path='/investormanagementpage' element={<InvestorManagementPage/>}/>
<Route path='/financialservicesPage' element = {<FinancialServices/>}/>
<Route path="/fullservicefund" element={<FullServiceFund/>}/>
<Route path="/feedback" element={<FeedbackPage />} />
<Route path="*" element={<Notfound/>}/>
</Routes>
<ChatAssistant/>
Expand Down

0 comments on commit 1e99f3a

Please sign in to comment.