Add mentor profile route and link from directory

cgen-2c0dfdae98fb4330990f183952adce9f
This commit is contained in:
Builder.io 2025-10-19 00:21:32 +00:00
parent fb983b69cd
commit f376ae5340

View file

@ -58,6 +58,7 @@ import FourOhFourPage from "./pages/404";
import SignupRedirect from "./pages/SignupRedirect";
import MentorshipRequest from "./pages/community/MentorshipRequest";
import MentorApply from "./pages/community/MentorApply";
import MentorProfile from "./pages/community/MentorProfile";
import Staff from "./pages/Staff";
import Realms from "./pages/Realms";
import Investors from "./pages/Investors";
@ -173,6 +174,10 @@ const App = () => (
path="/community/mentorship/apply"
element={<MentorApply />}
/>
<Route
path="/community/mentor/:username"
element={<MentorProfile />}
/>
<Route path="/community/:tabId" element={<Community />} />
<Route path="/staff" element={<Staff />} />
<Route path="/support" element={<Support />} />