forked from emre/www_projectmycelium_com
- Revised benefit titles and descriptions to better communicate core product values - Changed "Sovereign" to "Sovereign by Default" to emphasize out-of-the-box functionality - Replaced "Autonomous" with "Hackable & Open" to highlight developer-friendly nature - Updated "Energy Efficient" to "Unbreakable by Design" focusing on resilience - Combined cost and energy benefits into single value proposition for clearer messaging
44 lines
1.6 KiB
TypeScript
44 lines
1.6 KiB
TypeScript
import { CircleBackground } from '../../components/CircleBackground'
|
|
import { Container } from '../../components/Container'
|
|
import { Button } from '../../components/Button'
|
|
|
|
export function CallToAction() {
|
|
return (
|
|
<section
|
|
id="get-started"
|
|
className="relative overflow-hidden bg-gray-900 lg:py-32 py-24"
|
|
>
|
|
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2">
|
|
<CircleBackground color="#06b6d4" className="animate-spin-slower" />
|
|
</div>
|
|
<Container className="relative">
|
|
<div className="mx-auto max-w-xl text-center">
|
|
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-white sm:text-4xl">
|
|
Use the Mycelium Stack Your Way
|
|
</h2>
|
|
<p className="mt-6 text-lg text-gray-300">
|
|
Run workloads, connect environments, host nodes, and build agentic systems, all on one sovereign, self-healing network.
|
|
</p>
|
|
<p className="mt-4 text-lg text-gray-300">
|
|
Start wherever you are. Scale however you choose.
|
|
</p>
|
|
<div className="mt-10 flex flex-wrap justify-center gap-x-6 gap-y-4">
|
|
<Button to="/cloud" variant="solid" color="cyan">
|
|
Start Deployment
|
|
</Button>
|
|
<Button
|
|
to="https://threefold.info/mycelium_network/docs/"
|
|
as="a"
|
|
target="_blank"
|
|
variant="outline"
|
|
color="white"
|
|
>
|
|
Explore Docs
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
</section>
|
|
)
|
|
}
|