forked from emre/www_projectmycelium_com
feat: update product descriptions and streamline component list
- Updated main heading from "Components" to "Products" to better reflect offering - Rewrote hero description to emphasize standalone and integrated usage of products - Consolidated Compute, Storage, and GPU into a single "Resources" category - Updated Network description to focus on mesh networking capabilities - Modified Agents description to emphasize privacy and hardware ownership - Removed individual entries for GPU, Compute, and Storage components
This commit is contained in:
@@ -15,11 +15,11 @@ export function HomeSlider() {
|
|||||||
Ecosystem
|
Ecosystem
|
||||||
</Eyebrow>
|
</Eyebrow>
|
||||||
<H3 className="text-left text-white">
|
<H3 className="text-left text-white">
|
||||||
Discover the Mycelium Components
|
Discover the Mycelium Products
|
||||||
</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 intelligent automation, these components work together to empower users, developers, and organizations to build freely, without intermediaries.
|
From compute and networking to intelligent automation, these components can be used on its own or combined into a fully sovereign cloud.
|
||||||
</P>
|
</P>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -32,58 +32,39 @@ export function HomeSlider() {
|
|||||||
import networkImage from "/images/pages/network.webp";
|
import networkImage from "/images/pages/network.webp";
|
||||||
import agentImage from "/images/pages/agent.webp";
|
import agentImage from "/images/pages/agent.webp";
|
||||||
import cloudImage from "/images/pages/cloud.webp";
|
import cloudImage from "/images/pages/cloud.webp";
|
||||||
import gpuImage from "/images/pages/gpu.webp";
|
|
||||||
import computeImage from "/images/pages/compute.webp";
|
import computeImage from "/images/pages/compute.webp";
|
||||||
import storageImage from "/images/pages/storage.png";
|
|
||||||
|
|
||||||
const data = [
|
const data = [
|
||||||
|
{
|
||||||
|
category: "Cloud",
|
||||||
|
title: "Mycelium Cloud",
|
||||||
|
description: "Deploy Kubernetes clusters on sovereign infrastructure.",
|
||||||
|
src: "/images/pages/cloud.png",
|
||||||
|
bg: cloudImage,
|
||||||
|
link: "/cloud",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
category: "DePIN",
|
category: "DePIN",
|
||||||
title: "Mycelium Network",
|
title: "Mycelium Network",
|
||||||
description: "A decentralized network for distributed computing.",
|
description: "Encrypted peer-to-peer mesh networking across the globe.",
|
||||||
src: "/images/pages/network.png",
|
src: "/images/pages/network.png",
|
||||||
bg: networkImage,
|
bg: networkImage,
|
||||||
link: "/network",
|
link: "/network",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
category: "AI Agent",
|
category: "AI Agent",
|
||||||
title: "Mycelium Agent",
|
title: "Mycelium Agents",
|
||||||
description: "An intelligent agent for task automation.",
|
description: "Private, programmable AI systems that run on your hardware.",
|
||||||
src: "/images/pages/agent.png",
|
src: "/images/pages/agent.png",
|
||||||
bg: agentImage,
|
bg: agentImage,
|
||||||
link: "/agent",
|
link: "/agent",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
category: "Cloud",
|
category: "Resources",
|
||||||
title: "Mycelium Cloud",
|
title: "Compute / Storage / GPU",
|
||||||
description: "Decentralized cloud storage and services.",
|
description: "The resource layers powering the stack.",
|
||||||
src: "/images/pages/cloud.png",
|
|
||||||
bg: cloudImage,
|
|
||||||
link: "/cloud",
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
category: "GPU",
|
|
||||||
title: "Mycelium GPU",
|
|
||||||
description: "Access to a global network of GPUs.",
|
|
||||||
src: "/images/pages/gpu.png",
|
|
||||||
bg: gpuImage,
|
|
||||||
link: "/gpu",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
category: "Compute",
|
|
||||||
title: "Mycelium Compute",
|
|
||||||
description: "Run computations on a distributed network.",
|
|
||||||
src: "/images/pages/compute.png",
|
src: "/images/pages/compute.png",
|
||||||
bg: computeImage,
|
bg: computeImage,
|
||||||
link: "/compute",
|
link: "/compute",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
category: "Storage",
|
|
||||||
title: "Mycelium Storage",
|
|
||||||
description: "Secure and decentralized data storage.",
|
|
||||||
src: "/images/pages/storage.png",
|
|
||||||
bg: storageImage,
|
|
||||||
link: "/storage",
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user