forked from emre/www_projectmycelium_com
refactor: consolidate cloud and agents page components
- Removed duplicate hero component variations (AgentsHero/AgentsHeroAlt, CloudHero/CloudHeroAlt) - Deleted unused CloudCTA, CloudGettingStarted, and CloudDesign components - Cleaned up empty files and legacy page structure
This commit is contained in:
37
src/pages/cloud/archive/CloudCTA.tsx
Normal file
37
src/pages/cloud/archive/CloudCTA.tsx
Normal file
@@ -0,0 +1,37 @@
|
||||
import { Container } from '../../components/Container'
|
||||
import { Button } from '../../components/Button'
|
||||
|
||||
export function CloudCTA() {
|
||||
return (
|
||||
<section className="relative overflow-hidden py-24 lg:py-32">
|
||||
<Container className="relative">
|
||||
<div className="mx-auto max-w-3xl text-center">
|
||||
<p className="text-sm font-semibold uppercase tracking-[0.3em] text-cyan-500">
|
||||
Launch Today
|
||||
</p>
|
||||
<h2 className="mt-6 text-3xl font-semibold tracking-tight text-gray-900 lg:text-5xl">
|
||||
Put sovereign Kubernetes into production on the ThreeFold Grid.
|
||||
</h2>
|
||||
<p className="mt-6 text-lg text-gray-600">
|
||||
Provision multi-master clusters, integrate quantum-safe storage, and
|
||||
expose services worldwide without leaving the Mycelium mesh. Our
|
||||
team will help you launch deterministic workloads that stay private,
|
||||
compliant, and always-on.
|
||||
</p>
|
||||
<div className="mt-10 flex justify-center">
|
||||
<Button
|
||||
to="https://myceliumcloud.tf"
|
||||
as="a"
|
||||
variant="solid"
|
||||
color="cyan"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
Start Deployment
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</Container>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user