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 (