fix: change product cards layout from vertical to horizontal

Changed product cards container from flex-col to flex-row to match
prototype design where 3 cards are displayed horizontally side by side.

Before: Cards stacked vertically (top to bottom)
After: Cards arranged horizontally (left to right)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-30 05:37:30 +00:00
parent b98500e61f
commit 4b13d255bc

View File

@@ -134,8 +134,8 @@ export default function ProductPage() {
</div> </div>
</div> </div>
{/* Product Cards Grid */} {/* Product Cards Grid - Horizontal Layout */}
<div className="flex flex-col gap-6"> <div className="flex flex-row gap-6">
{products.map((product) => ( {products.map((product) => (
<ProductCard <ProductCard
key={product.id} key={product.id}