Files
www_projectmycelium_com/src/pages/storage/CallToAction.tsx
sasha-astiadi 7f9023c631 feat: simplify storage page messaging and structure
- Streamlined call-to-action to focus on cloud vs. self-hosted options
- Condensed architecture and use cases sections to remove excessive detail
- Reorganized page component order and added new capability/design sections
2025-11-04 16:23:57 +01:00

49 lines
1.5 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 py-20 sm:py-28"
>
<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-2xl text-center">
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-white sm:text-4xl">
Choose How You Want to Start
</h2>
<p className="mt-6 text-lg text-gray-300">
Store data in your Mycelium Cloud environment
or host your own node for full sovereignty.
</p>
<div className="mt-10 flex flex-wrap justify-center gap-x-6 gap-y-4">
<Button
to="https://myceliumcloud.tf"
as="a"
variant="solid"
color="white"
target="_blank"
rel="noreferrer"
>
Use Storage in Cloud
</Button>
<Button
to="#storage-developer-experience"
as="a"
variant="outline"
color="white"
>
Host a Node
</Button>
</div>
</div>
</Container>
</section>
)
}