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,66 @@
import { motion } from 'framer-motion'
import { Container } from '../../components/Container'
const stackData = [
{
id: 'agent',
title: 'Agent Layer',
description:
'Your sovereign agent with private memory and permissioned data access—always under your control. Choose from a wide library of open-source LLMs, paired with built-in semantic search and retrieval.',
},
{
id: 'network',
title: 'Network Layer',
description:
'A global, end-to-end encrypted overlay that simply doesn\'t break. Shortest-path routing moves your traffic the fastest way, every time with instant discovery.',
},
{
id: 'cloud',
title: 'Cloud Layer',
description:
'An autonomous, stateless OS that enforces pre-deterministic deployments you define. Workloads are cryptographically bound to your private key—location and access are yours.',
},
]
export function StackSection() {
return (
<section className="relative bg-white py-20 lg:py-32">
<Container>
<div className="grid grid-cols-1 lg:grid-cols-3 gap-12 items-start">
{/* Left Column - Text */}
<motion.div
initial={{ opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.5 }}
className="lg:col-span-1"
>
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-gray-900">
The Mycelium Stack
</h2>
<p className="mt-6 text-lg text-gray-600">
Built with Mycelium technology, our AI infrastructure ensures unbreakable networks, complete data sovereignty, ultra-secure agent-human communication, and unhackable data storage systems.
</p>
</motion.div>
{/* Right Column - Stack Cards */}
<div className="lg:col-span-2 space-y-6">
{stackData.map((layer, index) => (
<motion.div
key={layer.id}
initial={{ opacity: 0, x: 20 }}
whileInView={{ opacity: 1, x: 0 }}
viewport={{ once: true }}
transition={{ duration: 0.5, delay: index * 0.1 }}
className="rounded-2xl bg-gray-50 border border-gray-200 p-6 hover:border-cyan-500 hover:shadow-lg transition-all duration-300"
>
<h3 className="text-xl font-semibold text-gray-900">{layer.title}</h3>
<p className="mt-3 text-gray-600">{layer.description}</p>
</motion.div>
))}
</div>
</div>
</Container>
</section>
)
}