@@ -97,6 +97,7 @@ export const CustomTitlebar: React.FC<CustomTitlebarProps> = ({
9797 { isHovered && (
9898 < X size = { 8 } className = "text-red-900 opacity-60 group-hover:opacity-100" />
9999 ) }
100+ < span className = "sr-only" > Close window</ span >
100101 </ button >
101102
102103 { /* Minimize button */ }
@@ -111,6 +112,7 @@ export const CustomTitlebar: React.FC<CustomTitlebarProps> = ({
111112 { isHovered && (
112113 < Minus size = { 8 } className = "text-yellow-900 opacity-60 group-hover:opacity-100" />
113114 ) }
115+ < span className = "sr-only" > Minimize window</ span >
114116 </ button >
115117
116118 { /* Maximize button */ }
@@ -125,6 +127,7 @@ export const CustomTitlebar: React.FC<CustomTitlebarProps> = ({
125127 { isHovered && (
126128 < Square size = { 6 } className = "text-green-900 opacity-60 group-hover:opacity-100" />
127129 ) }
130+ < span className = "sr-only" > Maximize window</ span >
128131 </ button >
129132 </ div >
130133 </ div >
@@ -142,6 +145,7 @@ export const CustomTitlebar: React.FC<CustomTitlebarProps> = ({
142145 className = "p-2 rounded-md hover:bg-accent hover:text-accent-foreground transition-colors tauri-no-drag"
143146 >
144147 < Bot size = { 16 } />
148+ < span className = "sr-only" > Agents</ span >
145149 </ motion . button >
146150 </ TooltipSimple >
147151 ) }
@@ -155,6 +159,7 @@ export const CustomTitlebar: React.FC<CustomTitlebarProps> = ({
155159 className = "p-2 rounded-md hover:bg-accent hover:text-accent-foreground transition-colors tauri-no-drag"
156160 >
157161 < BarChart3 size = { 16 } />
162+ < span className = "sr-only" > Usage Dashboard</ span >
158163 </ motion . button >
159164 </ TooltipSimple >
160165 ) }
@@ -174,6 +179,7 @@ export const CustomTitlebar: React.FC<CustomTitlebarProps> = ({
174179 className = "p-2 rounded-md hover:bg-accent hover:text-accent-foreground transition-colors tauri-no-drag"
175180 >
176181 < Settings size = { 16 } />
182+ < span className = "sr-only" > Settings</ span >
177183 </ motion . button >
178184 </ TooltipSimple >
179185 ) }
@@ -188,6 +194,7 @@ export const CustomTitlebar: React.FC<CustomTitlebarProps> = ({
188194 className = "p-2 rounded-md hover:bg-accent hover:text-accent-foreground transition-colors flex items-center gap-1"
189195 >
190196 < MoreVertical size = { 16 } />
197+ < span className = "sr-only" > More options</ span >
191198 </ motion . button >
192199 </ TooltipSimple >
193200
0 commit comments