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

@@ -42,10 +42,6 @@ export function HomeBenefits() {
<H2 className="text-3xl lg:text-5xl lg:leading-tight max-w-5xl mx-auto text-center tracking-tight font-medium text-black dark:text-white"> <H2 className="text-3xl lg:text-5xl lg:leading-tight max-w-5xl mx-auto text-center tracking-tight font-medium text-black dark:text-white">
Why It Matters Why It Matters
</H2> </H2>
<P className=" max-w-3xl my-4 mx-auto text-center text-gray-600">
Project Mycelium is a new foundation for digital independence. A self-governing, AI-powered infrastructure that gives you control, efficiency, and trust without compromise.
</P>
</div> </div>
<div className="mt-10 grid grid-cols-1 gap-4 sm:mt-16 lg:grid-cols-7 lg:grid-rows-2 lg:px-12 px-6"> <div className="mt-10 grid grid-cols-1 gap-4 sm:mt-16 lg:grid-cols-7 lg:grid-rows-2 lg:px-12 px-6">

View File

@@ -41,10 +41,6 @@ export default function HomePage() {
<AnimatedSection> <AnimatedSection>
<HomeBenefits /> <HomeBenefits />
</AnimatedSection> </AnimatedSection>
<AnimatedSection>
<HomeComparisonTable />
</AnimatedSection>
<AnimatedSection> <AnimatedSection>
<CallToAction /> <CallToAction />

View File

@@ -15,11 +15,11 @@ export function HomeSlider() {
Ecosystem Ecosystem
</Eyebrow> </Eyebrow>
<H3 className="text-left text-white"> <H3 className="text-left text-white">
Discover Mycelium Components Mycelium Components
</H3> </H3>
<div className="mt-4 max-w-3xl"> <div className="mt-4 max-w-3xl">
<P className="text-left text-neutral-400"> <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> </P>
</div> </div>
</div> </div>
@@ -35,14 +35,6 @@ import cloudImage from "/images/pages/cloud.webp";
import computeImage from "/images/pages/compute.webp"; import computeImage from "/images/pages/compute.webp";
const data = [ 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", category: "Cloud",
title: "Mycelium Cloud", title: "Mycelium Cloud",
@@ -67,4 +59,12 @@ const data = [
bg: agentImage, bg: agentImage,
link: "/agent", link: "/agent",
}, },
{
category: "Resources",
title: "Compute / Storage / GPU",
description: "The resource layers powering the stack.",
src: "/images/pages/compute.png",
bg: computeImage,
link: "/compute",
},
]; ];