Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c4d35f26af | |||
| 800625e1ad | |||
| bf54eb1eec | |||
| 68931ab74c | |||
| 3701469b83 | |||
| 51306cd20a |
@@ -126,12 +126,12 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{ id: "p1", brand: "Maya", name: "Spring Sport (500ml)", price: "$3.00", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/blue-liquid-bottle-with-green-cap_187299-46177.jpg" },
|
||||
{ id: "p2", brand: "Maya", name: "Crystal Flow (1L)", price: "$5.00", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/blank-cosmetic-lotion-bottle_74190-5091.jpg" },
|
||||
{ id: "p3", brand: "Maya", name: "Evergreen Pack (6x)", price: "$25.00", rating: 5, reviewCount: "420", imageSrc: "http://img.b2bpic.net/free-photo/still-life-daisy-flowers_23-2150321399.jpg" },
|
||||
{ id: "p4", brand: "Maya", name: "Summit Series (1.5L)", price: "$7.00", rating: 5, reviewCount: "65", imageSrc: "http://img.b2bpic.net/free-photo/shadow-oil-bottle-with-olives-tea-strainer-white-backdrop_23-2147853863.jpg" },
|
||||
{ id: "p5", brand: "Maya", name: "Infinite Refill", price: "$40.00", rating: 5, reviewCount: "310", imageSrc: "http://img.b2bpic.net/free-photo/nice-sealed-bottle-dairy_23-2147895710.jpg" },
|
||||
{ id: "p6", brand: "Maya", name: "Eco-Glass Edition", price: "$12.00", rating: 5, reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/thermal-bottle_1203-3566.jpg" },
|
||||
{ id: "p1", brand: "Maya", name: "Spring Sport (500ml)", price: "$3.00", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/blue-liquid-bottle-with-green-cap_187299-46177.jpg", onProductClick: () => { window.location.href = '#checkout'; } },
|
||||
{ id: "p2", brand: "Maya", name: "Crystal Flow (1L)", price: "$5.00", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/blank-cosmetic-lotion-bottle_74190-5091.jpg", onProductClick: () => { window.location.href = '#checkout'; } },
|
||||
{ id: "p3", brand: "Maya", name: "Evergreen Pack (6x)", price: "$25.00", rating: 5, reviewCount: "420", imageSrc: "http://img.b2bpic.net/free-photo/still-life-daisy-flowers_23-2150321399.jpg", onProductClick: () => { window.location.href = '#checkout'; } },
|
||||
{ id: "p4", brand: "Maya", name: "Summit Series (1.5L)", price: "$7.00", rating: 5, reviewCount: "65", imageSrc: "http://img.b2bpic.net/free-photo/shadow-oil-bottle-with-olives-tea-strainer-white-backdrop_23-2147853863.jpg", onProductClick: () => { window.location.href = '#checkout'; } },
|
||||
{ id: "p5", brand: "Maya", name: "Infinite Refill", price: "$40.00", rating: 5, reviewCount: "310", imageSrc: "http://img.b2bpic.net/free-photo/nice-sealed-bottle-dairy_23-2147895710.jpg", onProductClick: () => { window.location.href = '#checkout'; } },
|
||||
{ id: "p6", brand: "Maya", name: "Eco-Glass Edition", price: "$12.00", rating: 5, reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/thermal-bottle_1203-3566.jpg", onProductClick: () => { window.location.href = '#checkout'; } },
|
||||
]}
|
||||
title="Our Collection"
|
||||
description="Select your Maya experience."
|
||||
@@ -177,4 +177,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user