forked from emre/www_projectmycelium_com
- Cleaned up unused component imports (CircleBackground, Button, Texts components) - Removed unused utility function classNames - Changed button color prop from "dark" to "white" in CallToAction component
56 lines
2.1 KiB
TypeScript
56 lines
2.1 KiB
TypeScript
"use client";
|
||
|
||
import { Container } from "@/components/Container";
|
||
import { Button } from "@/components/Button";
|
||
|
||
export function CallToAction() {
|
||
return (
|
||
<section className="relative overflow-hidden bg-gray-900">
|
||
{/* ✅ Top horizontal line with spacing */}
|
||
<div className="max-w-7xl bg-[#090909] mx-auto py-6 border border-t-0 border-b-0 border-gray-700"></div>
|
||
<div className="w-full border-t border-l border-r border-gray-700" />
|
||
|
||
{/* ✅ Main boxed area */}
|
||
<div
|
||
id="get-started"
|
||
className="relative py-18 max-w-7xl mx-auto bg-[#090909] border border-t-0 border-b-0 border-gray-700"
|
||
>
|
||
|
||
|
||
<Container className="relative">
|
||
<div className="mx-auto max-w-3xl 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">
|
||
Host your own node to contribute capacity or deploy workloads using the Mycelium Cloud.
|
||
You don’t need to host before deploying, and you don’t need to deploy before hosting.
|
||
|
||
</p>
|
||
|
||
{/* ✅ Two cards, stacked center with spacing */}
|
||
<div className="mt-10 flex flex-wrap justify-center gap-x-10 gap-y-8">
|
||
<div className="flex flex-col items-center text-center max-w-xs">
|
||
<Button to="/host" variant="solid" color="cyan" className="mt-4">
|
||
Host a Node
|
||
</Button>
|
||
</div>
|
||
|
||
<div className="flex flex-col items-center text-center max-w-xs">
|
||
<Button to="/cloud" variant="outline" color="white" className="mt-4">
|
||
Start Deploying
|
||
</Button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</Container>
|
||
</div>
|
||
|
||
{/* ✅ Bottom horizontal line with spacing */}
|
||
<div className="w-full border-b border-gray-700" />
|
||
<div className="max-w-7xl mx-auto py-6 border border-t-0 border-b-0 border-gray-700 bg-transparent" />
|
||
</section>
|
||
);
|
||
}
|