feat: reorder slider items and update ecosystem messaging

- Moved Compute/Storage/GPU to first position in slider
- Updated heading from "Mycelium Products" to "Mycelium Components"
- Changed description to emphasize Agents instead of "intelligent automation"
This commit is contained in:
2025-11-04 13:33:53 +01:00
parent e45ca7c86f
commit 00802c7064

View File

@@ -15,11 +15,11 @@ export function HomeSlider() {
Ecosystem
</Eyebrow>
<H3 className="text-left text-white">
Discover the Mycelium Products
Discover Mycelium Components
</H3>
<div className="mt-4 max-w-3xl">
<P className="text-left text-neutral-400">
From compute and networking to intelligent automation, these components can be used on its own or combined into a fully sovereign cloud.
From compute and networking to Agents, these components can be used on its own or combined into a fully sovereign cloud.
</P>
</div>
</div>
@@ -35,6 +35,14 @@ import cloudImage from "/images/pages/cloud.webp";
import computeImage from "/images/pages/compute.webp";
const data = [
{
category: "Resources",
title: "Compute / Storage / GPU",
description: "The resource layers powering the stack.",
src: "/images/pages/compute.png",
bg: computeImage,
link: "/compute",
},
{
category: "Cloud",
title: "Mycelium Cloud",
@@ -59,12 +67,4 @@ const data = [
bg: agentImage,
link: "/agent",
},
{
category: "Resources",
title: "Compute / Storage / GPU",
description: "The resource layers powering the stack.",
src: "/images/pages/compute.png",
bg: computeImage,
link: "/compute",
},
];