forked from emre/www_projectmycelium_com
- Simplified cloud messaging to focus on sovereignty and self-healing capabilities - Updated hero section copy across Cloud, Compute, GPU and Storage pages for clearer value proposition - Added new CloudHosting component to Cloud page layout - Changed hero images for GPU and Storage pages to improve visual consistency - Adjusted layout spacing and typography in Compute hero section - Streamlined cloud features description to be more concise an
39 lines
1.5 KiB
TypeScript
39 lines
1.5 KiB
TypeScript
'use client'
|
|
|
|
import { Button } from '../../components/Button'
|
|
import { Eyebrow, SectionHeader, P, H3 } from '../../components/Texts'
|
|
|
|
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/computehero.webp"
|
|
className="size-full object-contain"
|
|
/>
|
|
|
|
</div>
|
|
<div className="relative mx-auto max-w-7xl py-12 lg:py-24 lg:px-8">
|
|
<div className="max-w-2xl pr-6 pl-6 md:mr-auto md:w-2/3 md:pr-16 lg:w-1/2 lg:pl-0 lg:pr-24">
|
|
<Eyebrow className="text-base/7 font-semibold text-cyan-500">COMPUTE</Eyebrow>
|
|
<H3 className="mt-2 text-gray-900">The pulse of Intelligence Runs Here.</H3>
|
|
<P className="mt-6 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.
|
|
</P>
|
|
<P className="mt-6 text-gray-600">
|
|
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-12">
|
|
<Button href="#" variant="solid" color="cyan">
|
|
Experience Deterministic Compute
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|