Initial commit

This commit is contained in:
Emre
2025-10-22 17:30:00 +03:00
commit 205c8fd0d9
134 changed files with 8080 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
import { Container } from '../../components/Container'
export function PrimaryFeatures() {
return (
<section
id="howitworks"
aria-label="How Mycelium works"
className="bg-gray-900 py-20 sm:py-32"
>
<Container>
<div className="mx-auto max-w-2xl lg:mx-0 lg:max-w-3xl">
<h2 className="text-base/7 font-semibold text-cyan-500">How It Works</h2>
<p className="text-3xl lg:text-4xl font-medium tracking-tight text-white">
How Mycelium Operates
</p>
<p className="mt-6 text-lg text-gray-300">
Mycelium, like its natural namesake, thrives on decentralization, efficiency, and security, making it a truly powerful force in the world of decentralized networks.
</p>
</div>
<div className="mt-16 text-center">
<p className="text-lg text-gray-400">
Interactive features demonstration coming soon...
</p>
</div>
</Container>
</section>
)
}