aboutsummaryrefslogtreecommitdiffstats
path: root/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/App.js b/src/App.js
index 3e3f7fc..b52fe75 100644
--- a/src/App.js
+++ b/src/App.js
@@ -16,6 +16,9 @@ import PrivacyPolicy from "./pages/PrivacyPolicy";
import Dashboard from "./pages/Dashboard";
import {AuthProvider} from "./providers/AuthContext";
import Profile from "./pages/Profile";
+import FindOpportunities from "./pages/FindOpportunities";
+import RecruitVolunteers from "./pages/RecruitVolunteers";
+import Messages from "./pages/Messages";
function App() {
const location = useLocation();
@@ -36,6 +39,9 @@ function App() {
<Route path="/login" element={<Login />} />
<Route path="/dashboard" element={<Dashboard />} />
<Route path="/profile" element={<Profile />} />
+ <Route path="/find-opportunities" element={<FindOpportunities />} />
+ <Route path="/recruit-volunteers" element={<RecruitVolunteers />} />
+ <Route path="/messages" element={<Messages />} />
<Route path="/forgot-password" element={<ForgotPassword />} />
<Route path="/sign-up" element={<SignUp />} />
</Routes>