From 3d0ba866868f3f7b1ea654cd5cd8f8aaebf43a2f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 18 May 2026 13:56:53 +0000 Subject: [PATCH 1/5] Update src/app/catalog/accessories/page.tsx --- src/app/catalog/accessories/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/catalog/accessories/page.tsx b/src/app/catalog/accessories/page.tsx index 1e1c721..0a706c9 100644 --- a/src/app/catalog/accessories/page.tsx +++ b/src/app/catalog/accessories/page.tsx @@ -6,7 +6,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS export default function AccessoriesPage() { const products = [ - { id: "a1", brand: "Oakley", name: "Sunglasses", price: "6 900 ₽", rating: 4, reviewCount: "9", imageSrc: "http://img.b2bpic.net/free-photo/brutal-young-man-sunglasses-hat-island-travel_1321-3839.jpg" } + { id: "a1", brand: "Oakley", name: "Sunglasses", price: "6 900 ₽", rating: 4, reviewCount: "9", imageSrc: "http://img.b2bpic.net/free-photo/brutal-young-man-sunglasses-hat-island-travel_1321-3839.jpg?_wi=1" } ]; return ( -- 2.49.1 From 4ba17e70d6fbcbe0c54a9ea7a05b042c538433de Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 18 May 2026 13:56:53 +0000 Subject: [PATCH 2/5] Update src/app/catalog/clothes/page.tsx --- src/app/catalog/clothes/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/catalog/clothes/page.tsx b/src/app/catalog/clothes/page.tsx index 362e831..1c1dc9a 100644 --- a/src/app/catalog/clothes/page.tsx +++ b/src/app/catalog/clothes/page.tsx @@ -6,8 +6,8 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS 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" } + { 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?_wi=1" }, + { 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?_wi=1" } ]; return ( -- 2.49.1 From 35c7bb11ad13dd740ddd1d065322195941577ab9 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 18 May 2026 13:56:54 +0000 Subject: [PATCH 3/5] Update src/app/catalog/page.tsx --- src/app/catalog/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/catalog/page.tsx b/src/app/catalog/page.tsx index aec994a..1063573 100644 --- a/src/app/catalog/page.tsx +++ b/src/app/catalog/page.tsx @@ -7,8 +7,8 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS export default function CatalogPage() { const products = [ { id: "1", brand: "Nike", name: "Air Jordan 1", price: "15 900 ₽", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-wearing-futuristic-sneakers_23-2151005704.jpg?_wi=2" }, - { id: "2", brand: "Adidas", name: "Yeezy Boost", price: "22 000 ₽", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/view-white-ice-skates-with-cherries_23-2150806796.jpg" }, - { id: "3", 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: "2", brand: "Adidas", name: "Yeezy Boost", price: "22 000 ₽", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/view-white-ice-skates-with-cherries_23-2150806796.jpg?_wi=1" }, + { id: "3", 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?_wi=2" } ]; return ( -- 2.49.1 From 441db192fcaa4aa1c17418f445f47c585481b7ad Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 18 May 2026 13:56:54 +0000 Subject: [PATCH 4/5] Update src/app/catalog/sneakers/page.tsx --- src/app/catalog/sneakers/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/catalog/sneakers/page.tsx b/src/app/catalog/sneakers/page.tsx index cacc048..073c5b3 100644 --- a/src/app/catalog/sneakers/page.tsx +++ b/src/app/catalog/sneakers/page.tsx @@ -7,7 +7,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS export default function SneakersPage() { const products = [ { id: "s1", brand: "Nike", name: "Air Jordan 1", price: "15 900 ₽", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-wearing-futuristic-sneakers_23-2151005704.jpg?_wi=2" }, - { id: "s2", brand: "Adidas", name: "Yeezy Boost", price: "22 000 ₽", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/view-white-ice-skates-with-cherries_23-2150806796.jpg" } + { id: "s2", brand: "Adidas", name: "Yeezy Boost", price: "22 000 ₽", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/view-white-ice-skates-with-cherries_23-2150806796.jpg?_wi=2" } ]; return ( -- 2.49.1 From e0bdd9fb8f28f2b725dfbe4fa3de5df1e1c5c677 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 18 May 2026 13:56:55 +0000 Subject: [PATCH 5/5] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 18a59e1..9d20e42 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -110,11 +110,11 @@ export default function LandingPage() { useInvertedBackground={false} products={[ { id: "1", brand: "Nike", name: "Air Jordan 1", price: "15 900 ₽", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-wearing-futuristic-sneakers_23-2151005704.jpg?_wi=2" }, - { id: "2", brand: "Adidas", name: "Yeezy Boost", price: "22 000 ₽", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/view-white-ice-skates-with-cherries_23-2150806796.jpg" }, - { id: "3", 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: "4", 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" }, + { id: "2", brand: "Adidas", name: "Yeezy Boost", price: "22 000 ₽", rating: 5, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/view-white-ice-skates-with-cherries_23-2150806796.jpg?_wi=3" }, + { id: "3", 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?_wi=3" }, + { id: "4", 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?_wi=2" }, { id: "5", brand: "Nike", name: "Tech Fleece", price: "11 000 ₽", rating: 5, reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/cute-slim-african-american-girl-red-dress-with-dreadlocks-backpack-posed-outdoor-sitting-stairs-stylish-black-model_627829-3286.jpg" }, - { id: "6", brand: "Oakley", name: "Sunglasses", price: "6 900 ₽", rating: 4, reviewCount: "9", imageSrc: "http://img.b2bpic.net/free-photo/brutal-young-man-sunglasses-hat-island-travel_1321-3839.jpg" }, + { id: "6", brand: "Oakley", name: "Sunglasses", price: "6 900 ₽", rating: 4, reviewCount: "9", imageSrc: "http://img.b2bpic.net/free-photo/brutal-young-man-sunglasses-hat-island-travel_1321-3839.jpg?_wi=2" }, ]} title="Новые поступления" description="Последние модели в наличии." -- 2.49.1