Update src/app/page.tsx

This commit is contained in:
2026-05-12 13:46:29 +00:00
parent 9b7f9c6d7b
commit e2fe812869

View File

@@ -77,13 +77,13 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "p1", name: "Amber Noir", price: "$120.00", variant: "Full Bottle", imageSrc: "http://img.b2bpic.net/free-photo/natural-argan-oil-dropper-composition_23-2149016650.jpg"},
id: "p1", name: "Amber Noir", price: "$120.00", variant: "Full Bottle", imageSrc: "http://img.b2bpic.net/free-photo/natural-argan-oil-dropper-composition_23-2149016650.jpg", onProductClick: () => console.log('Added Amber Noir to cart')},
{
id: "p2", name: "Bergamot Bliss", price: "$95.00", variant: "Full Bottle", imageSrc: "http://img.b2bpic.net/free-photo/dark-nail-polish_23-2147710588.jpg"},
id: "p2", name: "Bergamot Bliss", price: "$95.00", variant: "Full Bottle", imageSrc: "http://img.b2bpic.net/free-photo/dark-nail-polish_23-2147710588.jpg", onProductClick: () => console.log('Added Bergamot Bliss to cart')},
{
id: "p3", name: "Cedar Wood", price: "$110.00", variant: "Full Bottle", imageSrc: "http://img.b2bpic.net/free-photo/back-school-concept-with-woman-studying-library_23-2148172380.jpg"},
id: "p3", name: "Cedar Wood", price: "$110.00", variant: "Full Bottle", imageSrc: "http://img.b2bpic.net/free-photo/back-school-concept-with-woman-studying-library_23-2148172380.jpg", onProductClick: () => console.log('Added Cedar Wood to cart')},
{
id: "p4", name: "Deep Midnight", price: "$135.00", variant: "Full Bottle", imageSrc: "http://img.b2bpic.net/free-photo/green-bottle-parfum-table_140725-7027.jpg"},
id: "p4", name: "Deep Midnight", price: "$135.00", variant: "Full Bottle", imageSrc: "http://img.b2bpic.net/free-photo/green-bottle-parfum-table_140725-7027.jpg", onProductClick: () => console.log('Added Deep Midnight to cart')},
]}
title="Fragrance Gallery"
description="Explore our alphabetical catalog. Customize your experience with full bottles or sample sizes: 2ml, 5ml, 10ml, 15ml, 30ml."
@@ -166,4 +166,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}