From 852d9bfc3e4450d3194c66c7f5e4d158b8ef1a68 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Fri, 7 Nov 2025 16:58:50 +0100 Subject: [PATCH] feat: convert ComputeOverview section to light mode theme - Updated background colors from dark (gray-950) to white with subtle accents - Modified text colors from light/white to dark gray for improved readability - Added horizontal border lines and adjusted card styling with light shadows and hover effects --- src/pages/compute/ComputeOverview.tsx | 46 +++++++++++++++++++-------- 1 file changed, 33 insertions(+), 13 deletions(-) diff --git a/src/pages/compute/ComputeOverview.tsx b/src/pages/compute/ComputeOverview.tsx index 47ec356..31917c4 100644 --- a/src/pages/compute/ComputeOverview.tsx +++ b/src/pages/compute/ComputeOverview.tsx @@ -17,51 +17,68 @@ const overviewCards = [ export function ComputeOverview() { return ( -
+
+ + {/* ✅ Top horizontal line with spacing */} +
+
+ + {/* ✅ subtle light-mode background accents */}
-
+
- + +
Mycelium Compute - + + Deterministic compute fabric for autonomous workloads. -

+ +

Mycelium Compute delivers predictable, sovereign performance—free from lock-in and drift. Deploy any workload with cryptographic precision, knowing the platform verifies, scales, and heals itself on your behalf.

-

+ +

Deterministic. Self-managing. Stateless by design.

+ + {/* ✅ Light Mode Cards */}
{overviewCards.map((card) => (
-
+
+
-

+

{card.label}

-

+

{card.title}

-

+

{card.copy}

@@ -69,6 +86,9 @@ export function ComputeOverview() { ))}
+ {/* ✅ Bottom horizontal line with spacing */} +
+
) }