completionId: cgen-72c9a348251d4d4a955d424e3fb52d2d

cgen-72c9a348251d4d4a955d424e3fb52d2d
This commit is contained in:
Builder.io 2025-11-11 04:07:55 +00:00
parent 7bb1a9a85c
commit 97867f1149

View file

@ -546,6 +546,16 @@ const App = () => (
element={<Space5Finance />}
/>
{/* Staff Pages Routes */}
<Route path="/staff/announcements" element={<StaffAnnouncements />} />
<Route path="/staff/expense-reports" element={<StaffExpenseReports />} />
<Route path="/staff/marketplace" element={<StaffInternalMarketplace />} />
<Route path="/staff/knowledge-base" element={<StaffKnowledgeBase />} />
<Route path="/staff/learning-portal" element={<StaffLearningPortal />} />
<Route path="/staff/performance-reviews" element={<StaffPerformanceReviews />} />
<Route path="/staff/project-tracking" element={<StaffProjectTracking />} />
<Route path="/staff/team-handbook" element={<StaffTeamHandbook />} />
{/* Explicit 404 route for static hosting fallbacks */}
<Route path="/404" element={<FourOhFourPage />} />
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}