feat: update product descriptions and streamline component list

- Updated main heading from "Components" to "Products" to better reflect offering
- Rewrote hero description to emphasize standalone and integrated usage of products
- Consolidated Compute, Storage, and GPU into a single "Resources" category
- Updated Network description to focus on mesh networking capabilities
- Modified Agents description to emphasize privacy and hardware ownership
- Removed individual entries for GPU, Compute, and Storage components
This commit is contained in:
2025-11-01 22:26:26 +01:00
parent c7371ec21b
commit 01c3c226a9

View File

@@ -15,11 +15,11 @@ export function HomeSlider() {
Ecosystem
</Eyebrow>
<H3 className="text-left text-white">
Discover the Mycelium Components
Discover the Mycelium Products
</H3>
<div className="mt-4 max-w-3xl">
<P className="text-left text-neutral-400">
From compute and networking to intelligent automation, these components work together to empower users, developers, and organizations to build freely, without intermediaries.
From compute and networking to intelligent automation, these components can be used on its own or combined into a fully sovereign cloud.
</P>
</div>
</div>
@@ -32,58 +32,39 @@ export function HomeSlider() {
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: "Cloud",
title: "Mycelium Cloud",
description: "Deploy Kubernetes clusters on sovereign infrastructure.",
src: "/images/pages/cloud.png",
bg: cloudImage,
link: "/cloud",
},
{
category: "DePIN",
title: "Mycelium Network",
description: "A decentralized network for distributed computing.",
description: "Encrypted peer-to-peer mesh networking across the globe.",
src: "/images/pages/network.png",
bg: networkImage,
link: "/network",
},
{
category: "AI Agent",
title: "Mycelium Agent",
description: "An intelligent agent for task automation.",
title: "Mycelium Agents",
description: "Private, programmable AI systems that run on your hardware.",
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.",
category: "Resources",
title: "Compute / Storage / GPU",
description: "The resource layers powering the stack.",
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",
},
];