Update src/app/page.tsx
This commit is contained in:
@@ -146,17 +146,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1", name: "Signature Hoodie", price: "$85", variant: "Classic Black", imageSrc: "http://img.b2bpic.net/free-photo/full-view-stylish-woman-city-looking-away_197531-33381.jpg"},
|
||||
id: "p1", name: "Signature Hoodie", price: "$85", variant: "Classic Black", imageSrc: "http://img.b2bpic.net/free-photo/full-view-stylish-woman-city-looking-away_197531-33381.jpg", onProductClick: () => { window.location.href = '#contact' }},
|
||||
{
|
||||
id: "p2", name: "Urban Sweater", price: "$65", variant: "Ash Gray", imageSrc: "http://img.b2bpic.net/free-photo/empty-shopping-mall-with-casual-formal-wear-brands_482257-88618.jpg"},
|
||||
id: "p2", name: "Urban Sweater", price: "$65", variant: "Ash Gray", imageSrc: "http://img.b2bpic.net/free-photo/empty-shopping-mall-with-casual-formal-wear-brands_482257-88618.jpg", onProductClick: () => { window.location.href = '#contact' }},
|
||||
{
|
||||
id: "p3", name: "Bomber Jacket", price: "$120", variant: "Olive", imageSrc: "http://img.b2bpic.net/free-photo/isolated-spring-sweater-concept_1194-638660.jpg"},
|
||||
id: "p3", name: "Bomber Jacket", price: "$120", variant: "Olive", imageSrc: "http://img.b2bpic.net/free-photo/isolated-spring-sweater-concept_1194-638660.jpg", onProductClick: () => { window.location.href = '#contact' }},
|
||||
{
|
||||
id: "p4", name: "Street Joggers", price: "$55", variant: "Black", imageSrc: "http://img.b2bpic.net/free-photo/stylish-hipster-arab-man-guy-sunglasses-posed-outdoor-street-sunset-against-gray-wall_627829-2738.jpg"},
|
||||
id: "p4", name: "Street Joggers", price: "$55", variant: "Black", imageSrc: "http://img.b2bpic.net/free-photo/stylish-hipster-arab-man-guy-sunglasses-posed-outdoor-street-sunset-against-gray-wall_627829-2738.jpg", onProductClick: () => { window.location.href = '#contact' }},
|
||||
{
|
||||
id: "p5", name: "Logo Cap", price: "$25", variant: "Midnight", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-empty-notebook-cellphone-woman-s-accessories-black-concept-top-view-isolated-white-background_1428-526.jpg"},
|
||||
id: "p5", name: "Logo Cap", price: "$25", variant: "Midnight", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-empty-notebook-cellphone-woman-s-accessories-black-concept-top-view-isolated-white-background_1428-526.jpg", onProductClick: () => { window.location.href = '#contact' }},
|
||||
{
|
||||
id: "p6", name: "Daily Sneakers", price: "$95", variant: "White", imageSrc: "http://img.b2bpic.net/free-photo/front-view-athletic-woman-s-legs-with-copy-space_23-2148444908.jpg"},
|
||||
id: "p6", name: "Daily Sneakers", price: "$95", variant: "White", imageSrc: "http://img.b2bpic.net/free-photo/front-view-athletic-woman-s-legs-with-copy-space_23-2148444908.jpg", onProductClick: () => { window.location.href = '#contact' }},
|
||||
]}
|
||||
title="New Arrivals"
|
||||
description="Fresh drops from our signature collections."
|
||||
@@ -259,4 +259,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user