Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 049bda1513 | |||
| 5e1875f41e |
@@ -104,11 +104,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "men-jackets", name: "Men's Jackets", price: "View Collection", imageSrc: "http://img.b2bpic.net/free-photo/young-man-trendy-dressed-comes-down-stairs-outside_613910-18396.jpg", imageAlt: "Stylish man wearing a luxury jacket"},
|
||||
id: "men-jackets", name: "Men's Jackets", price: "View Collection", imageSrc: "http://img.b2bpic.net/free-photo/young-man-trendy-dressed-comes-down-stairs-outside_613910-18396.jpg", imageAlt: "Stylish man wearing a luxury jacket", onProductClick: () => document.getElementById('mens-jackets')?.scrollIntoView({ behavior: 'smooth' })
|
||||
},
|
||||
{
|
||||
id: "women-jackets", name: "Women's Jackets", price: "View Collection", imageSrc: "http://img.b2bpic.net/free-photo/woman-model-demonstrating-winter-cloths_1303-16949.jpg", imageAlt: "Elegant woman wearing a designer jacket"},
|
||||
id: "women-jackets", name: "Women's Jackets", price: "View Collection", imageSrc: "http://img.b2bpic.net/free-photo/woman-model-demonstrating-winter-cloths_1303-16949.jpg", imageAlt: "Elegant woman wearing a designer jacket", onProductClick: () => document.getElementById('womens-jackets')?.scrollIntoView({ behavior: 'smooth' })
|
||||
},
|
||||
{
|
||||
id: "women-coats", name: "Women's Coats", price: "View Collection", imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-female-with-black-hat-sitting-cafe-glass-wall_181624-21926.jpg", imageAlt: "Sophisticated woman wearing a luxury coat"},
|
||||
id: "women-coats", name: "Women's Coats", price: "View Collection", imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-female-with-black-hat-sitting-cafe-glass-wall_181624-21926.jpg", imageAlt: "Sophisticated woman wearing a luxury coat", onProductClick: () => document.getElementById('womens-coats')?.scrollIntoView({ behavior: 'smooth' })
|
||||
},
|
||||
]}
|
||||
title="Explore Our Exclusive Collections"
|
||||
description="Discover unparalleled craftsmanship across our curated ranges of luxury jackets and coats for every style and season."
|
||||
@@ -194,7 +197,7 @@ export default function LandingPage() {
|
||||
id: "wc3", name: "Oversized Shearling Coat", price: "Enquire Now", imageSrc: "http://img.b2bpic.net/free-photo/coffee-phone-beautiful-background-girl_1303-1413.jpg", imageAlt: "Oversized shearling coat", onProductClick: () => { window.open('https://wa.me/1234567890?text=Hi,%0AI%20am%20interested%20in%20this%20design.%0APlease%20share%20complete%20specifications%20and%20pricing.', '_blank'); },
|
||||
},
|
||||
{
|
||||
id: "wc4", name: "Quilted Mid-Length Coat", price: "Enquire Now", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylish-smiling-skinny-woman-with-curly-hair-walking-street-stairs-dressed-warm-brown-coat-blue-suit-autumn-trendy-fashion-street-style_285396-7078.jpg", imageAlt: "Quilted mid-length coat", onProductClick: () => { window.open('https://wa.me/1234567890?text=Hi,%0AI%20am%20interested%20in%20this%20design.%0APlease%20share%20complete%20specifications%20and%20pricing.', '_blank'); },
|
||||
id: "wc4", name: "Quilted Mid-Length Coat", price: "Enquire Now", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-stylish-smiling-skinny-woman-with-curly-hair-walking-street-stairs-dressed-warm-brown-coat-blue-suit-autumn-trendy-fashion-street-style_285396-6917.jpg", imageAlt: "Quilted mid-length coat", onProductClick: () => { window.open('https://wa.me/1234567890?text=Hi,%0AI%20am%20interested%20in%20this%20design.%0APlease%20share%20complete%20specifications%20and%20pricing.', '_blank'); },
|
||||
},
|
||||
{
|
||||
id: "wc5", name: "Elegant Wrap Coat", price: "Enquire Now", imageSrc: "http://img.b2bpic.net/free-photo/fashionable-woman-black-dress-grey-spring-coat_613910-7084.jpg", imageAlt: "Elegant women's wrap coat", onProductClick: () => { window.open('https://wa.me/1234567890?text=Hi,%0AI%20am%20interested%20in%20this%20design.%0APlease%20share%20complete%20specifications%20and%20pricing.', '_blank'); },
|
||||
@@ -275,4 +278,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user