forked from emre/www_projectmycelium_com
- Added tagline "Works Alone. Works Together." with explanation of Mycelium Cloud's flexibility - Simplified "Explore Docs" button text to "Documentation" - Fixed indentation for improved code readability
51 lines
1.8 KiB
TypeScript
51 lines
1.8 KiB
TypeScript
import { H3, H5, Eyebrow } from "../../components/Texts"
|
|
import { Button } from "../../components/Button"
|
|
|
|
|
|
export function CloudHeroNew() {
|
|
return (
|
|
<div
|
|
className="relative bg-cover lg:bg-contain bg-right bg-no-repeat"
|
|
style={{ backgroundImage: "url('/images/cloudhero4.webp')" }}
|
|
>
|
|
<div className="mx-auto max-w-7xl lg:px-8">
|
|
<div className="px-6 pt-12 pb-24 sm:pb-32 lg:col-span-5 lg:px-0 lg:pt-40 lg:pb-48 xl:col-span-5">
|
|
<div className="mx-auto max-w-2xl lg:mx-0">
|
|
<Eyebrow>
|
|
Mycelium Cloud
|
|
</Eyebrow>
|
|
<H3 className="mt-4">
|
|
Run Kubernetes on the Sovereign Agentic Cloud
|
|
</H3>
|
|
<H5 className="mt-8 text-lg text-gray-600">
|
|
Mycelium Cloud turns the ThreeFold Grid into a programmable substrate for K3s.
|
|
</H5>
|
|
<H5 className="mt-4 text-lg text-gray-600">
|
|
Deploy K3s clusters on a global, self-healing mesh network.
|
|
Your workloads run on sovereign, encrypted infrastructure, without centralized cloud control.
|
|
</H5>
|
|
<H5 className="mt-4 text-sm text-gray-600">
|
|
Works Alone. Works Together.
|
|
Mycelium Cloud can run on any network fabric, or pair with Mycelium Network
|
|
for sovereign connectivity.
|
|
</H5>
|
|
<div className="mt-10 flex items-center gap-x-6">
|
|
<Button
|
|
to="#"
|
|
variant="solid"
|
|
className=""
|
|
color="cyan"
|
|
>
|
|
Get started
|
|
</Button>
|
|
<Button to="#" variant="outline">
|
|
Documentation <span aria-hidden="true"> →</span>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|