2 Commits

Author SHA1 Message Date
00802c7064 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"
2025-11-04 13:33:53 +01:00
e45ca7c86f feat: reorder HomeSlider section before HomeBenefits 2025-11-04 13:33:47 +01:00
2 changed files with 14 additions and 14 deletions

View File

@@ -34,15 +34,15 @@ export default function HomePage() {
<StackSectionLight />
</AnimatedSection>
<AnimatedSection ref={sliderRef}>
<HomeSlider />
</AnimatedSection>
<AnimatedSection>
<HomeBenefits />
</AnimatedSection>
<AnimatedSection ref={sliderRef}>
<HomeSlider />
</AnimatedSection>
<AnimatedSection>
<HomeComparisonTable />

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