Add mentor profile route and link from directory
cgen-2c0dfdae98fb4330990f183952adce9f
This commit is contained in:
parent
fb983b69cd
commit
f376ae5340
1 changed files with 5 additions and 0 deletions
|
|
@ -58,6 +58,7 @@ import FourOhFourPage from "./pages/404";
|
||||||
import SignupRedirect from "./pages/SignupRedirect";
|
import SignupRedirect from "./pages/SignupRedirect";
|
||||||
import MentorshipRequest from "./pages/community/MentorshipRequest";
|
import MentorshipRequest from "./pages/community/MentorshipRequest";
|
||||||
import MentorApply from "./pages/community/MentorApply";
|
import MentorApply from "./pages/community/MentorApply";
|
||||||
|
import MentorProfile from "./pages/community/MentorProfile";
|
||||||
import Staff from "./pages/Staff";
|
import Staff from "./pages/Staff";
|
||||||
import Realms from "./pages/Realms";
|
import Realms from "./pages/Realms";
|
||||||
import Investors from "./pages/Investors";
|
import Investors from "./pages/Investors";
|
||||||
|
|
@ -173,6 +174,10 @@ const App = () => (
|
||||||
path="/community/mentorship/apply"
|
path="/community/mentorship/apply"
|
||||||
element={<MentorApply />}
|
element={<MentorApply />}
|
||||||
/>
|
/>
|
||||||
|
<Route
|
||||||
|
path="/community/mentor/:username"
|
||||||
|
element={<MentorProfile />}
|
||||||
|
/>
|
||||||
<Route path="/community/:tabId" element={<Community />} />
|
<Route path="/community/:tabId" element={<Community />} />
|
||||||
<Route path="/staff" element={<Staff />} />
|
<Route path="/staff" element={<Staff />} />
|
||||||
<Route path="/support" element={<Support />} />
|
<Route path="/support" element={<Support />} />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue