From a71e765a38b5ffd9e30e53a801b5c92ed5ee5dc2 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 18 May 2026 13:56:27 +0000 Subject: [PATCH] Update src/app/catalog/clothes/page.tsx --- src/app/catalog/clothes/page.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app/catalog/clothes/page.tsx b/src/app/catalog/clothes/page.tsx index fcd9c8e..362e831 100644 --- a/src/app/catalog/clothes/page.tsx +++ b/src/app/catalog/clothes/page.tsx @@ -5,6 +5,11 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; export default function ClothesPage() { + const products = [ + { id: "c1", brand: "Stussy", name: "Hoodie Logo", price: "8 500 ₽", rating: 4, reviewCount: "20", imageSrc: "http://img.b2bpic.net/free-photo/stylish-urban-style-african-american-man-pink-hoodie-posed-winter-day-boxing-hands_627829-1456.jpg" }, + { id: "c2", brand: "Carhartt", name: "T-Shirt", price: "4 200 ₽", rating: 5, reviewCount: "35", imageSrc: "http://img.b2bpic.net/free-photo/view-handsome-young-man-looking-camera_197531-33430.jpg" } + ]; + return (