From 00802c7064e6c049d7e35bcb29b8af024f458c1b Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Tue, 4 Nov 2025 13:33:53 +0100 Subject: [PATCH] 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" --- src/pages/home/HomeSlider.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/pages/home/HomeSlider.tsx b/src/pages/home/HomeSlider.tsx index 83e212d..693d8b6 100644 --- a/src/pages/home/HomeSlider.tsx +++ b/src/pages/home/HomeSlider.tsx @@ -15,11 +15,11 @@ export function HomeSlider() { Ecosystem

- Discover the Mycelium Products + Discover Mycelium Components

- 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.

@@ -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", - }, ];