refactor: streamline home page content and reorder ecosystem components

- Removed comparison table section from home page
- Removed descriptive paragraph from benefits section
- Reordered ecosystem slider to show Cloud, Network, and Agent before Compute resources
This commit is contained in:
2025-11-05 12:08:16 +01:00
parent 8d9f02a846
commit 88d6a90f60
3 changed files with 10 additions and 18 deletions

View File

@@ -15,11 +15,11 @@ export function HomeSlider() {
Ecosystem
</Eyebrow>
<H3 className="text-left text-white">
Discover Mycelium Components
Mycelium Components
</H3>
<div className="mt-4 max-w-3xl">
<P className="text-left text-neutral-400">
From compute and networking to Agents, these components can be used on its own or combined into a fully sovereign cloud.
Each component can be used on its own or combined into a fully sovereign cloud.
</P>
</div>
</div>
@@ -35,14 +35,6 @@ 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",
@@ -67,4 +59,12 @@ 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",
},
];