diff --git a/src/pages/Infrastructure.tsx b/src/pages/Infrastructure.tsx index 8e5119a..fadaa90 100644 --- a/src/pages/Infrastructure.tsx +++ b/src/pages/Infrastructure.tsx @@ -33,6 +33,7 @@ const trendData = Array.from({ length: 14 }, (_, i) => ({ compute: 60 + i * 0.6 + Math.sin(i / 2) * 3, storage: 35 + i * 0.4 + Math.cos(i / 3) * 2, database: 20 + i * 0.2 + Math.sin(i / 4) * 1.5, + network: 45 + i * 0.3 + Math.cos(i / 2.5) * 2.5, })) const activities = [ @@ -181,19 +182,23 @@ export default function Infrastructure() { {/* Status Cards */} -
+
{statusCards.map((card) => { const Icon = card.icon return ( -
-

+
+

{card.label}

- - {card.value} + + {card.value}
-

{card.sub}

+

{card.sub}

) })} @@ -237,16 +242,19 @@ export default function Infrastructure() {
{/* Resource Trend */} -
+
+
+

Resource Trend

- + +