fix(all-products): sync card images with each product's hero image

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.
This commit is contained in:
Kunthawat Greethong
2026-06-10 14:30:46 +07:00
parent 1e4fa53fb2
commit d93191f675

View File

@@ -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: "ระบบรั้ว" },
];