Add all Staff arm routes

cgen-ad2b2849b68f4f6d8a1df644d4ca82a9
This commit is contained in:
Builder.io 2025-11-10 04:48:39 +00:00
parent ea0122a552
commit 8e71d77a8b

View file

@ -360,7 +360,17 @@ const App = () => (
element={<MentorProfile />}
/>
<Route path="/community/:tabId" element={<Community />} />
{/* Staff Arm Routes */}
<Route path="/staff" element={<Staff />} />
<Route path="/staff/login" element={<StaffLogin />} />
<Route path="/staff/dashboard" element={<StaffDashboard />} />
<Route path="/staff/directory" element={<StaffDirectory />} />
<Route path="/staff/admin" element={<StaffAdmin />} />
<Route path="/staff/docs" element={<StaffDocs />} />
<Route path="/staff/achievements" element={<StaffAchievements />} />
<Route path="/staff/chat" element={<StaffChat />} />
<Route path="/support" element={<Support />} />
<Route path="/status" element={<Status />} />
<Route path="/changelog" element={<Changelog />} />