From d688791bb5ec39b6a52bf3a4f9ef88ea4f0a65a3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:10:57 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a59253b..f6770f9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,11 +16,11 @@ export default function LandingPage() { const [cartItems, setCartItems] = useState([ { id: "hg-001", name: "Smith & Wesson 9mm M&P Shield", price: "$499.99", quantity: 0, - imageSrc: "http://img.b2bpic.net/free-photo/empty-bullets-gun-table_53876-148180.jpg", imageAlt: "Smith & Wesson 9mm pistol" + imageSrc: "http://img.b2bpic.net/free-photo/empty-bullets-gun-table_53876-148180.jpg?_wi=1", imageAlt: "Smith & Wesson 9mm pistol" }, { id: "rf-002", name: "Colt .223 AR-15 Rifle", price: "$899.99", quantity: 0, - imageSrc: "http://img.b2bpic.net/free-photo/man-shooting-gallery-trying-out-new-rifle-model-close-up_482257-127883.jpg", imageAlt: "Colt AR-15 rifle platform" + imageSrc: "http://img.b2bpic.net/free-photo/man-shooting-gallery-trying-out-new-rifle-model-close-up_482257-127883.jpg?_wi=1", imageAlt: "Colt AR-15 rifle platform" } ]); @@ -104,10 +104,10 @@ export default function LandingPage() { tagIcon={CheckCircle} products={[ { - id: "hg-001", brand: "Smith & Wesson", name: "9mm M&P Shield", price: "$499.99", rating: 5, reviewCount: "847", imageSrc: "http://img.b2bpic.net/free-photo/empty-bullets-gun-table_53876-148180.jpg", imageAlt: "Smith & Wesson 9mm pistol", onProductClick: () => handleAddToCart("hg-001") + id: "hg-001", brand: "Smith & Wesson", name: "9mm M&P Shield", price: "$499.99", rating: 5, reviewCount: "847", imageSrc: "http://img.b2bpic.net/free-photo/empty-bullets-gun-table_53876-148180.jpg?_wi=2", imageAlt: "Smith & Wesson 9mm pistol", onProductClick: () => handleAddToCart("hg-001") }, { - id: "rf-002", brand: "Colt", name: ".223 AR-15 Rifle", price: "$899.99", rating: 5, reviewCount: "1.2k", imageSrc: "http://img.b2bpic.net/free-photo/man-shooting-gallery-trying-out-new-rifle-model-close-up_482257-127883.jpg", imageAlt: "Colt AR-15 rifle platform", onProductClick: () => handleAddToCart("rf-002") + id: "rf-002", brand: "Colt", name: ".223 AR-15 Rifle", price: "$899.99", rating: 5, reviewCount: "1.2k", imageSrc: "http://img.b2bpic.net/free-photo/man-shooting-gallery-trying-out-new-rifle-model-close-up_482257-127883.jpg?_wi=2", imageAlt: "Colt AR-15 rifle platform", onProductClick: () => handleAddToCart("rf-002") }, { id: "sg-003", brand: "Mossberg", name: "12 Gauge Pump Action", price: "$349.99", rating: 5, reviewCount: "634", imageSrc: "http://img.b2bpic.net/free-photo/shotgun-bullets_53876-15100.jpg", imageAlt: "Mossberg 12 gauge shotgun", onProductClick: () => handleAddToCart("sg-003") -- 2.49.1