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

View File

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