Files
www_projectmycelium_com/src/pages/compute/ComputeHero.tsx
sasha-astiadi 24a0a981a9 feat: update hero button styling across product pages
- Changed button background color from indigo-600 to cyan-500 for consistent branding
- Updated button border radius from rounded-md to rounded-xl for softer appearance
- Modified focus outline color from indigo-600 to cyan-600 to match new button color
- Applied changes consistently across Cloud, Compute, GPU, and Storage hero sections
2025-10-27 17:00:33 +01:00

40 lines
1.7 KiB
TypeScript

'use client'
import { Button } from '../../components/Button'
export function ComputeHero() {
return (
<div className="relative bg-white">
<div className="relative h-80 overflow-hidden bg-transparent md:absolute md:right-0 md:h-full md:w-1/3 lg:w-1/2">
<img
alt=""
src="/images/computehero4.png"
className="size-full object-cover"
/>
</div>
<div className="relative mx-auto max-w-7xl py-24 sm:py-32 lg:px-8 lg:py-40">
<div className="pr-6 pl-6 md:mr-auto md:w-2/3 md:pr-16 lg:w-1/2 lg:pl-0 lg:pr-24 xl:pr-32">
<h2 className="text-base/7 font-semibold text-cyan-500">COMPUTE</h2>
<p className="mt-2 text-4xl font-semibold tracking-tight text-gray-900 sm:text-5xl">The pulse of intelligence runs here.</p>
<p className="mt-6 text-base/7 text-gray-600">
Mycelium Compute brings predictable, sovereign performance free from lock-in, free from drift.
Deploy any workload, anywhere, with cryptographic precision and zero compromise.
From micro-VMs to full clusters, every operation is deterministic, self-managing, and stateless by design.
Compute that verifies itself. Expands itself. Heals itself.
</p>
<div className="mt-8">
<Button
href="#"
className="inline-flex rounded-xl bg-cyan-500 px-3.5 py-2.5 text-sm font-semibold text-white shadow-xs hover:bg-indigo-500 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-cyan-600"
>
{' '}
Experience Deterministic Compute{' '}
</Button>
</div>
</div>
</div>
</div>
)
}