diff --git a/src/app/catalog/accessories/page.tsx b/src/app/catalog/accessories/page.tsx index 1d4c58c..1e1c721 100644 --- a/src/app/catalog/accessories/page.tsx +++ b/src/app/catalog/accessories/page.tsx @@ -5,6 +5,10 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; 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" } + ]; + return ( 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 ( diff --git a/src/app/catalog/page.tsx b/src/app/catalog/page.tsx index 279a991..aec994a 100644 --- a/src/app/catalog/page.tsx +++ b/src/app/catalog/page.tsx @@ -5,6 +5,12 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; 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" } + ]; + return ( diff --git a/src/app/catalog/sneakers/page.tsx b/src/app/catalog/sneakers/page.tsx index 72eff2c..cacc048 100644 --- a/src/app/catalog/sneakers/page.tsx +++ b/src/app/catalog/sneakers/page.tsx @@ -5,6 +5,11 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; 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" } + ]; + return ( diff --git a/src/app/contacts/page.tsx b/src/app/contacts/page.tsx index dec621b..36de79e 100644 --- a/src/app/contacts/page.tsx +++ b/src/app/contacts/page.tsx @@ -3,8 +3,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; +import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Mail, MapPin, Phone } from "lucide-react"; export default function ContactsPage() { return ( @@ -30,14 +31,36 @@ export default function ContactsPage() { brandName="DARK BOX" /> - +
+
+
+ +

Адрес

+

ул. Мира, 44, Краснодар

+
+
+ +

Телефон

+

+7 (999) 000-00-00

+
+
+ +

Почта

+

info@darkbox.ru

+
+
+
+ - +
-
- +
);