From c56f67ae2e1143eafa6d266eadbbca70d59524c6 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Thu, 6 Nov 2025 23:03:25 +0100 Subject: [PATCH] refactor: redesign ComputeHero component layout and styling - Restructured hero section with boxed container and background image positioning - Added onGetStartedClick callback prop for interactive button handling - Updated button variants and added tagline about network compatibility --- src/pages/compute/ComputeHero.tsx | 70 +++++++++++++++++++------------ 1 file changed, 43 insertions(+), 27 deletions(-) diff --git a/src/pages/compute/ComputeHero.tsx b/src/pages/compute/ComputeHero.tsx index d66cc41..8b71451 100644 --- a/src/pages/compute/ComputeHero.tsx +++ b/src/pages/compute/ComputeHero.tsx @@ -1,35 +1,51 @@ -'use client' +import { H3, Eyebrow } from "@/components/Texts" +import { Button } from "@/components/Button" -import { Button } from '@/components/Button' -import { Eyebrow, P, H3 } from '@/components/Texts' - -export function ComputeHero() { +export function ComputeHero({ onGetStartedClick = () => {} }: { onGetStartedClick?: () => void }) { return ( -
-
- - -
-
-
- COMPUTE -

Deterministic Compute You Control

-

- Run workloads on sovereign, self-verifying infrastructure. - Mycelium Compute delivers predictable execution, zero drift, and automatic healing, whether you’re running containers, VMs, agents, or full Kubernetes clusters. -

-
- - +
+ {/* Boxed container */} +
+ {/* Inner padding */} +
+
+ + Mycelium Compute + +

+ Deterministic Compute You Control +

+

+ Run workloads on sovereign, self-verifying infrastructure. + Mycelium Compute delivers predictable execution, zero drift, and automatic healing, whether you’re running containers, VMs, agents, or full Kubernetes clusters. +

+

+ Works Alone. Works Together. + Mycelium Compute can run on any network fabric, or pair with Mycelium Network + for sovereign connectivity. +

+
+ + +
+
+ {/* ✅ Bottom horizontal line with spacing */} +
+
) }