"use client"; import WorldMap from "@/components/ui/world-map"; import { Eyebrow, H3, P } from "@/components/Texts"; const stats = [ { id: 1, name: 'CORES', value: '54,958', description: 'Total Central Processing Unit cores available on the grid.' }, { id: 2, name: 'NODES', value: '1,493', description: 'Total number of nodes on the grid.' }, { id: 3, name: 'SSD CAPACITY', value: '5,388,956', description: 'Total GB of storage (SSD, HDD, & RAM) on the grid.' }, { id: 4, name: 'COUNTRIES', value: '44', description: 'Total number of countries with active nodes.' }, ] export function HomeMap() { return (
{/* ✅ Top horizontal line with spacing */}
PROJECT MYCELIUM IS LIVE.

Host a Node, Grow the Network

Mycelium runs on nodes hosted by people and organizations around the world. Each node adds compute, storage, and bandwidth, expanding the network’s capacity and resilience.

You can share your idle resources and earn rewards when they are used. Configure it once. Your node takes over from there.

{/* ✅ Match same side margins */}
{stats.map((stat) => (
{stat.name}
{stat.value}

{stat.description}

))}
{/* ✅ Bottom horizontal line with spacing */}
); }