From d93191f675566b862847f04f1536d92026fe1871 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Wed, 10 Jun 2026 14:30:46 +0700 Subject: [PATCH] fix(all-products): sync card images with each product's hero image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Found 3 mismatches between all-products.astro card images and the actual hero image of each product page: - ROCKWOOL: prod_0.png → cool-n-comfort-rl.jpg (matches hero) - MICROFIBER: prod_0.jpg → microfiber-enf.jpg (matches hero) - SCG: prod_0.jpg → scg-crb-g.jpg (matches hero) Other 22 products were already in sync. All 27 products now show their canonical hero image on the all-products page. --- src/pages/all-products.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/all-products.astro b/src/pages/all-products.astro index 2056905..92a9e5a 100644 --- a/src/pages/all-products.astro +++ b/src/pages/all-products.astro @@ -39,9 +39,9 @@ const products = [ // ระบบรั้ว (2 items) { name: "รั้วเทวดา", href: "/รั้วเทวดา", image: "/images/tevada/LINE_ALBUM_รั้วเทวดา_260522_1.jpg", category: "ระบบรั้ว" }, - { name: "ROCKWOOL", href: "/rockwool", image: "/images/rockwool/prod_0.png", category: "ฉนวนหุ้มท่อ" }, - { name: "MICROFIBER", href: "/microfiber", image: "/images/microfiber/prod_0.jpg", category: "ฉนวนหุ้มท่อ" }, - { name: "SCG", href: "/scg", image: "/images/scg/prod_0.jpg", category: "ฉนวนหุ้มท่อ" }, + { name: "ROCKWOOL", href: "/rockwool", image: "/images/rockwool/cool-n-comfort-rl.jpg", category: "ฉนวนหุ้มท่อ" }, + { name: "MICROFIBER", href: "/microfiber", image: "/images/microfiber/microfiber-enf.jpg", category: "ฉนวนหุ้มท่อ" }, + { name: "SCG", href: "/scg", image: "/images/scg/scg-crb-g.jpg", category: "ฉนวนหุ้มท่อ" }, { name: "ระบบรั้วไวน์แมน", href: "/ระบบรั้วไวน์แมน", image: "/images/products-raw/vineman/ระบบรั้วไวน์แมน-Vineman-e1613286324569-1024x880.jpg", category: "ระบบรั้ว" }, ];