'use client' import { Disclosure, DisclosureButton, DisclosurePanel, } from '@headlessui/react' import { MinusIcon, PlusIcon } from '@heroicons/react/24/outline' import { Eyebrow, H3, H4 } from "@/components/Texts" const product = { subtitle: "Federation", name: "Runs on Your Own Infrastructure", description: `

Each Pod lives on your own hardware or on trusted local nodes in the Mycelium Network. There is no central cloud and no company in the middle. You are not uploading your life to the cloud. You are running it yourself.

`, details: [ { name: "Your Data Lives on Your Pods", description: "Full control of where your data is stored and how it’s shared.", }, { name: "Direct Pod-to-Pod Networking", description: "Direct connections between Pods for faster, private communication.", }, { name: "No One Can Spy or Shut You Down", description: "Independence from corporate servers or cloud outages.", }, { name: "Resilient Even if Nodes Disconnect", description: "Continuous availability even if one node disconnects.", }, ], } export function PodsDesign() { return (
{/* TOP LINE */}
{/* IMAGE */}
Mycelium Federation
{/* PRODUCT INFO */}
{product.subtitle}

{product.name}

{/* DETAILS ACCORDION */}
{product.details.map((detail) => (

{detail.name}

{detail.description}

))}
{/* BOTTOM LINE */}
) }