@@ -10,6 +10,7 @@ import {
1010 Code ,
1111 Folder ,
1212 GearSix ,
13+ HardDrives ,
1314 Keyboard ,
1415 Palette ,
1516 Plugs ,
@@ -25,6 +26,7 @@ import { AccountSettings } from "./sections/AccountSettings";
2526import { AdvancedSettings } from "./sections/AdvancedSettings" ;
2627import { ClaudeCodeSettings } from "./sections/ClaudeCodeSettings" ;
2728import { CloudEnvironmentsSettings } from "./sections/CloudEnvironmentsSettings" ;
29+ import { EnvironmentsSettings } from "./sections/environments/EnvironmentsSettings" ;
2830import { GeneralSettings } from "./sections/GeneralSettings" ;
2931import { McpServersSettings } from "./sections/McpServersSettings" ;
3032import { PersonalizationSettings } from "./sections/PersonalizationSettings" ;
@@ -46,6 +48,11 @@ const SIDEBAR_ITEMS: SidebarItem[] = [
4648 { id : "account" , label : "Account" , icon : < User size = { 16 } /> } ,
4749 { id : "workspaces" , label : "Workspaces" , icon : < Folder size = { 16 } /> } ,
4850 { id : "worktrees" , label : "Worktrees" , icon : < TreeStructure size = { 16 } /> } ,
51+ {
52+ id : "environments" ,
53+ label : "Environments" ,
54+ icon : < HardDrives size = { 16 } /> ,
55+ } ,
4956 {
5057 id : "cloud-environments" ,
5158 label : "Cloud environments" ,
@@ -74,6 +81,7 @@ const CATEGORY_TITLES: Record<SettingsCategory, string> = {
7481 account : "Account" ,
7582 workspaces : "Workspaces" ,
7683 worktrees : "Worktrees" ,
84+ environments : "Environments" ,
7785 "cloud-environments" : "Cloud environments" ,
7886 personalization : "Personalization" ,
7987 "claude-code" : "Claude Code" ,
@@ -90,6 +98,7 @@ const CATEGORY_COMPONENTS: Record<SettingsCategory, React.ComponentType> = {
9098 account : AccountSettings ,
9199 workspaces : WorkspacesSettings ,
92100 worktrees : WorktreesSettings ,
101+ environments : EnvironmentsSettings ,
93102 "cloud-environments" : CloudEnvironmentsSettings ,
94103 personalization : PersonalizationSettings ,
95104 "claude-code" : ClaudeCodeSettings ,
0 commit comments