Add all Client Hub routes to App.tsx

cgen-f968be39e31b403eb1727dff9948b4eb
This commit is contained in:
Builder.io 2025-11-12 04:54:10 +00:00
parent 715ef89ce2
commit 5b60434fec

View file

@ -478,10 +478,30 @@ const App = () => (
{/* Client Hub routes */}
<Route path="/hub/client" element={<ClientHub />} />
<Route
path="/hub/client/dashboard"
element={<ClientDashboard />}
/>
<Route
path="/hub/client/projects"
element={<ClientProjects />}
/>
<Route
path="/hub/client/invoices"
element={<ClientInvoices />}
/>
<Route
path="/hub/client/contracts"
element={<ClientContracts />}
/>
<Route
path="/hub/client/reports"
element={<ClientReports />}
/>
<Route
path="/hub/client/settings"
element={<ClientSettings />}
/>
{/* Nexus routes */}
<Route path="/nexus" element={<Nexus />} />