aboutsummaryrefslogtreecommitdiffstats
path: root/src/App.js
diff options
context:
space:
mode:
authorJeff Kleinaitis <jeffkleinaitis@gmail.com>2024-04-25 16:08:17 -0700
committerGitHub <noreply@github.com>2024-04-25 16:08:17 -0700
commitd40d372bec07957422183389d4b0cfab83387e04 (patch)
tree4160d913e96abf2a0f787c427edf49d7a5a3af00 /src/App.js
parent5b96af38b9761076845fb81fd0946002e4867bc0 (diff)
parent74888cf3afa316c3ddd7e08fcd0e836874698bfd (diff)
Merge pull request #29 from digadoo/developHEADmain
04/25 PR: New pages, state added to sidebar items, and a structure for displaying tasks
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>