"use client"; import { Container } from "@/components/Container"; import { H3, P, Eyebrow } from "@/components/Texts"; export function CloudBluePrint() { const logos = [ { src: '/images/logo/cryptpad.png', href: 'https://cryptpad.fr' }, { src: '/images/logo/gitea.png', href: 'https://about.gitea.com' }, { src: '/images/logo/lifekit.png', href: '#' }, // No link available { src: '/images/logo/matrix.png', href: 'https://matrix.org' }, { src: '/images/logo/nextcloud.png', href: 'https://nextcloud.com' }, { src: '/images/logo/stalwart.png', href: 'https://stalw.art' }, ]; return (
{/* ✅ Boxed container */}
Featured Blueprint

Your Personal Sovereign Cloud Workspace

Digital Me is an example environment built to demonstrate what’s possible on top of the Mycelium Stack — a full personal cloud you can deploy, customize, or extend. Your files, communication, apps, and optional AI agent, all running privately on infrastructure you choose.

{/* ✅ 3x2 logo grid */}
{logos.map((logo, i) => (
{`Logo
))}
{/* ✅ Bottom line + bottom spacer */}
); }