Skip to content

Commit 7a7c4b1

Browse files
samejrmatt-aitken
andauthored
feat(webapp): New limits page (#2885)
<img width="1381" height="1362" alt="CleanShot 2026-01-14 at 13 41 02" src="https://github.com/user-attachments/assets/0537dccf-60c7-4ab7-a0e4-3164eac1e97d" /> --------- Co-authored-by: Matt Aitken <[email protected]>
1 parent 733894b commit 7a7c4b1

File tree

17 files changed

+1761
-55
lines changed

17 files changed

+1761
-55
lines changed

apps/webapp/app/components/navigation/SideMenu.tsx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import {
2+
AdjustmentsHorizontalIcon,
23
ArrowPathRoundedSquareIcon,
34
ArrowRightOnRectangleIcon,
45
BeakerIcon,
@@ -50,6 +51,7 @@ import {
5051
adminPath,
5152
branchesPath,
5253
concurrencyPath,
54+
limitsPath,
5355
logoutPath,
5456
newOrganizationPath,
5557
newProjectPath,
@@ -349,19 +351,26 @@ export function SideMenu({
349351
<SideMenuItem
350352
name="Concurrency"
351353
icon={ConcurrencyIcon}
352-
activeIconColor="text-amber-500"
354+
activeIconColor="text-concurrency"
353355
to={concurrencyPath(organization, project, environment)}
354356
data-action="concurrency"
355357
/>
356358
)}
357359
<SideMenuItem
358360
name="Regions"
359361
icon={GlobeAmericasIcon}
360-
activeIconColor="text-green-500"
362+
activeIconColor="text-regions"
361363
to={regionsPath(organization, project, environment)}
362364
data-action="regions"
363365
badge={<V4Badge />}
364366
/>
367+
<SideMenuItem
368+
name="Limits"
369+
icon={AdjustmentsHorizontalIcon}
370+
activeIconColor="text-limits"
371+
to={limitsPath(organization, project, environment)}
372+
data-action="limits"
373+
/>
365374
<SideMenuItem
366375
name="Project settings"
367376
icon={Cog8ToothIcon}

0 commit comments

Comments
 (0)