forked from emre/www_projectmycelium_com
- Added cyan radial glow SVG to CallToAction components across all product pages for visual consistency - Created NoSinglePoint animation demonstrating redundant network paths and resilience against single point failures - Updated HomeArchitecture layout to better center and display animations with improved flex positioning
70 lines
2.5 KiB
TypeScript
70 lines
2.5 KiB
TypeScript
"use client";
|
|
|
|
import { Container } from "@/components/Container";
|
|
import { Button } from "@/components/Button";
|
|
|
|
export function CallToAction() {
|
|
return (
|
|
<section className="relative overflow-hidden bg-[#121212]">
|
|
<div className="max-w-7xl bg-[#111111] mx-auto py-6 border border-t-0 border-b-0 border-gray-800"></div>
|
|
<div className="w-full border-t border-l border-r border-gray-800" />
|
|
|
|
<div
|
|
id="get-started"
|
|
className="relative py-18 max-w-7xl mx-auto bg-[#111111] border border-t-0 border-b-0 border-gray-800"
|
|
>
|
|
{/* ✅ Cyan Radial Glow */}
|
|
<svg
|
|
viewBox="0 0 1024 1024"
|
|
aria-hidden="true"
|
|
className="absolute top-full left-1/2 w-7xl h-320 -translate-x-1/2 -translate-y-1/2 mask-image mask-[radial-gradient(circle,white,transparent)]"
|
|
>
|
|
<circle
|
|
r={512}
|
|
cx={512}
|
|
cy={512}
|
|
fill="url(#mycelium-cyan-glow)"
|
|
fillOpacity="0.2"
|
|
/>
|
|
<defs>
|
|
<radialGradient id="mycelium-cyan-glow">
|
|
<stop stopColor="#00e5ff" />
|
|
<stop offset="1" stopColor="transparent" />
|
|
</radialGradient>
|
|
</defs>
|
|
</svg>
|
|
<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">
|
|
Join Mycelium Grid
|
|
</h2>
|
|
|
|
<p className="mt-6 text-lg text-gray-300">
|
|
Be part of a global network that powers private, distributed
|
|
infrastructure. Host a node, contribute resources, and earn rewards
|
|
while expanding the sovereign digital grid.
|
|
</p>
|
|
|
|
<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">
|
|
Join Mycelium
|
|
</Button>
|
|
</div>
|
|
|
|
<div className="flex flex-col items-center text-center max-w-xs">
|
|
<Button to="/docs" variant="outline" color="white" className="mt-4">
|
|
Explore docs
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
</div>
|
|
|
|
<div className="w-full border-b border-gray-800" />
|
|
<div className="max-w-7xl mx-auto py-6 border border-t-0 border-b-0 border-gray-800 bg-transparent" />
|
|
</section>
|
|
);
|
|
}
|