From 6d232fac113f87ce8251806bc0964727635f07df Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 23 May 2026 10:06:25 +0000 Subject: [PATCH] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 87f82a6..8f1dca3 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -15,6 +15,12 @@ export default function GalleryPage() { { title: "Bulk Inventory", description: "Real-time Tracking", imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662913.jpg" } ]); + const handleFileUpload = (index: number, newImageUrl: string) => { + const updatedItems = [...galleryItems]; + updatedItems[index].imageSrc = newImageUrl; + setGalleryItems(updatedItems); + }; + const navItems = [ { name: "Services", id: "/services" }, { name: "How It Works", id: "/how-it-works" },