diff --git a/public/images/pages/agent.png b/public/images/pages/agent.png new file mode 100644 index 0000000..92e7f37 Binary files /dev/null and b/public/images/pages/agent.png differ diff --git a/public/images/pages/cloud.png b/public/images/pages/cloud.png new file mode 100644 index 0000000..e451a7f Binary files /dev/null and b/public/images/pages/cloud.png differ diff --git a/public/images/pages/compute.png b/public/images/pages/compute.png new file mode 100644 index 0000000..7d0234b Binary files /dev/null and b/public/images/pages/compute.png differ diff --git a/public/images/pages/gpu.png b/public/images/pages/gpu.png new file mode 100644 index 0000000..727d1b7 Binary files /dev/null and b/public/images/pages/gpu.png differ diff --git a/public/images/pages/network.png b/public/images/pages/network.png new file mode 100644 index 0000000..69f31e4 Binary files /dev/null and b/public/images/pages/network.png differ diff --git a/public/images/pages/storage.png b/public/images/pages/storage.png new file mode 100644 index 0000000..91c7e2b Binary files /dev/null and b/public/images/pages/storage.png differ diff --git a/src/pages/home/HomeSlider.tsx b/src/pages/home/HomeSlider.tsx index 4e5b313..141e840 100644 --- a/src/pages/home/HomeSlider.tsx +++ b/src/pages/home/HomeSlider.tsx @@ -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", },