"use client"; import { Carousel, Card } from "@/components/ui/apple-cards-carousel"; import { H3, P , Eyebrow} from "@/components/Texts"; export function HomeSlider() { const cards = data.map((card) => ( )); return (
Ecosystem

Discover the Mycelium Components

From compute and networking to intelligent automation, these components work together to empower users, developers, and organizations to build freely, without intermediaries.

); } import networkImage from "/images/pages/network.webp"; import agentImage from "/images/pages/agent.webp"; import cloudImage from "/images/pages/cloud.webp"; import gpuImage from "/images/pages/gpu.webp"; import computeImage from "/images/pages/compute.webp"; import storageImage from "/images/pages/storage.png"; const data = [ { category: "DePIN", title: "Mycelium Network", description: "A decentralized network for distributed computing.", src: "/images/pages/network.png", bg: networkImage, link: "/network", }, { category: "AI Agent", title: "Mycelium Agent", description: "An intelligent agent for task automation.", src: "/images/pages/agent.png", bg: agentImage, link: "/agent", }, { category: "Cloud", title: "Mycelium Cloud", description: "Decentralized cloud storage and services.", src: "/images/pages/cloud.png", bg: cloudImage, link: "/cloud", }, { category: "GPU", title: "Mycelium GPU", description: "Access to a global network of GPUs.", src: "/images/pages/gpu.png", bg: gpuImage, link: "/gpu", }, { category: "Compute", title: "Mycelium Compute", description: "Run computations on a distributed network.", src: "/images/pages/compute.png", bg: computeImage, link: "/compute", }, { category: "Storage", title: "Mycelium Storage", description: "Secure and decentralized data storage.", src: "/images/pages/storage.png", bg: storageImage, link: "/storage", }, ];