feat: update home slider images to PNG format

- Added new PNG format images for network, agent, cloud, GPU, compute and storage sections
- Updated image source paths in HomeSlider component to reference new PNG files
- Replaced legacy .webp gallery images with dedicated page-specific images for better quality and consistency
This commit is contained in:
2025-10-31 14:11:52 +01:00
parent fa7c524b18
commit 57fa97cc70
7 changed files with 7 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

BIN
public/images/pages/gpu.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

View File

@@ -34,14 +34,14 @@ 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 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.webp"; import storageImage from "/images/pages/storage.png";
const data = [ const data = [
{ {
category: "DePIN", category: "DePIN",
title: "Mycelium Network", title: "Mycelium Network",
description: "A decentralized network for distributed computing.", description: "A decentralized network for distributed computing.",
src: "/images/gallery/9.webp", src: "/images/pages/network.png",
bg: networkImage, bg: networkImage,
link: "/network", link: "/network",
}, },
@@ -49,7 +49,7 @@ const data = [
category: "AI Agent", category: "AI Agent",
title: "Mycelium Agent", title: "Mycelium Agent",
description: "An intelligent agent for task automation.", description: "An intelligent agent for task automation.",
src: "/images/gallery/2.webp", src: "/images/pages/agent.png",
bg: agentImage, bg: agentImage,
link: "/agent", link: "/agent",
}, },
@@ -57,7 +57,7 @@ const data = [
category: "Cloud", category: "Cloud",
title: "Mycelium Cloud", title: "Mycelium Cloud",
description: "Decentralized cloud storage and services.", description: "Decentralized cloud storage and services.",
src: "/images/gallery/3.webp", src: "/images/pages/cloud.png",
bg: cloudImage, bg: cloudImage,
link: "/cloud", link: "/cloud",
}, },
@@ -66,7 +66,7 @@ const data = [
category: "GPU", category: "GPU",
title: "Mycelium GPU", title: "Mycelium GPU",
description: "Access to a global network of GPUs.", description: "Access to a global network of GPUs.",
src: "/images/gallery/4.webp", src: "/images/pages/gpu.png",
bg: gpuImage, bg: gpuImage,
link: "/gpu", link: "/gpu",
}, },
@@ -74,7 +74,7 @@ const data = [
category: "Compute", category: "Compute",
title: "Mycelium Compute", title: "Mycelium Compute",
description: "Run computations on a distributed network.", description: "Run computations on a distributed network.",
src: "/images/gallery/5.webp", src: "/images/pages/compute.png",
bg: computeImage, bg: computeImage,
link: "/compute", link: "/compute",
}, },
@@ -82,7 +82,7 @@ const data = [
category: "Storage", category: "Storage",
title: "Mycelium Storage", title: "Mycelium Storage",
description: "Secure and decentralized data storage.", description: "Secure and decentralized data storage.",
src: "/images/gallery/6.webp", src: "/images/pages/storage.png",
bg: storageImage, bg: storageImage,
link: "/storage", link: "/storage",
}, },