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 */} +
+
) }