Add mentorship pages imports and routes
cgen-cfdd266c915c4bf0a3f2770b08ebd928
This commit is contained in:
parent
864d4f361b
commit
cc9a2f9384
1 changed files with 4 additions and 0 deletions
|
|
@ -55,6 +55,8 @@ import ProjectBoard from "./pages/ProjectBoard";
|
|||
import { Navigate } from "react-router-dom";
|
||||
import FourOhFourPage from "./pages/404";
|
||||
import SignupRedirect from "./pages/SignupRedirect";
|
||||
import MentorshipRequest from "./pages/community/MentorshipRequest";
|
||||
import MentorApply from "./pages/community/MentorApply";
|
||||
|
||||
const queryClient = new QueryClient();
|
||||
|
||||
|
|
@ -141,6 +143,8 @@ const App = () => (
|
|||
<Route path="/blog" element={<Blog />} />
|
||||
<Route path="/blog/:slug" element={<BlogPost />} />
|
||||
<Route path="/community" element={<Community />} />
|
||||
<Route path="/community/mentorship" element={<MentorshipRequest />} />
|
||||
<Route path="/community/mentorship/apply" element={<MentorApply />} />
|
||||
<Route path="/community/:tabId" element={<Community />} />
|
||||
<Route path="/support" element={<Support />} />
|
||||
<Route path="/status" element={<Status />} />
|
||||
|
|
|
|||
Loading…
Reference in a new issue