@@ -44,7 +44,17 @@ import { ProjectLibrary } from './pages/ProjectLibrary';
4444import { ProjectNotifications } from './pages/ProjectNotifications' ;
4545import { ProjectProfiles } from './pages/ProjectProfiles' ;
4646import { Projects } from './pages/Projects' ;
47- import { ProjectSettings } from './pages/ProjectSettings' ;
47+ import {
48+ ProjectSettings ,
49+ ProjectSettingsAccess ,
50+ ProjectSettingsAgents ,
51+ ProjectSettingsConnections ,
52+ ProjectSettingsDeploy ,
53+ ProjectSettingsGeneral ,
54+ ProjectSettingsIndexRedirect ,
55+ ProjectSettingsInfrastructure ,
56+ ProjectSettingsRuntime ,
57+ } from './pages/ProjectSettings' ;
4858import { ProjectSkills } from './pages/ProjectSkills' ;
4959import { ProjectTriggerDetail } from './pages/ProjectTriggerDetail' ;
5060import { ProjectTriggers } from './pages/ProjectTriggers' ;
@@ -127,7 +137,16 @@ export default function App() {
127137 < Route path = "ideas/:taskId" element = { < IdeaDetailPage /> } />
128138 < Route path = "tasks" element = { < Navigate to = "../ideas" replace /> } />
129139 < Route path = "tasks/:taskId" element = { < TaskDetail /> } />
130- < Route path = "settings" element = { < ProjectSettings /> } />
140+ < Route path = "settings" element = { < ProjectSettings /> } >
141+ < Route index element = { < ProjectSettingsIndexRedirect /> } />
142+ < Route path = "general" element = { < ProjectSettingsGeneral /> } />
143+ < Route path = "access" element = { < ProjectSettingsAccess /> } />
144+ < Route path = "connections" element = { < ProjectSettingsConnections /> } />
145+ < Route path = "agents" element = { < ProjectSettingsAgents /> } />
146+ < Route path = "infrastructure" element = { < ProjectSettingsInfrastructure /> } />
147+ < Route path = "runtime" element = { < ProjectSettingsRuntime /> } />
148+ < Route path = "deploy" element = { < ProjectSettingsDeploy /> } />
149+ </ Route >
131150 < Route path = "activity" element = { < ProjectActivity /> } />
132151 < Route path = "notifications" element = { < ProjectNotifications /> } />
133152 < Route path = "triggers" element = { < ProjectTriggers /> } />
0 commit comments