From 311b97070c7a8fe98d84b08112520b89be84d127 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 00:59:48 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0798d94..1791846 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,6 +14,11 @@ import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; export default function LandingPage() { + const handlePurchase = (productName: string) => { + console.log(`Initiating payment for ${productName}`); + alert(`Proceeding to checkout for ${productName}...`); + }; + return ( @@ -102,12 +108,12 @@ export default function LandingPage() { title="Our Fragrance Collection" description="Explore our curated selection of signature scents." products={[ - { id: "1", name: "Midnight Rose", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/baroque-style-with-pink-flowers-arrangement_23-2149629980.jpg" }, - { id: "2", name: "Oud Wood", price: "$145", imageSrc: "http://img.b2bpic.net/free-photo/dark-nail-polish_23-2147710588.jpg" }, - { id: "3", name: "Citrus Breeze", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-colored-bottles_23-2148241820.jpg" }, - { id: "4", name: "Spiced Amber", price: "$135", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pinecone-beige-shawl-dark-surface-free-space_140725-63518.jpg" }, - { id: "5", name: "Ocean Mist", price: "$105", imageSrc: "http://img.b2bpic.net/free-photo/perfume-bottle-table_1194-639153.jpg" }, - { id: "6", name: "Velvet Musk", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/liquor-beautiful-glass-bottle_176474-6070.jpg" }, + { id: "1", name: "Midnight Rose", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/baroque-style-with-pink-flowers-arrangement_23-2149629980.jpg", onProductClick: () => handlePurchase("Midnight Rose") }, + { id: "2", name: "Oud Wood", price: "$145", imageSrc: "http://img.b2bpic.net/free-photo/dark-nail-polish_23-2147710588.jpg", onProductClick: () => handlePurchase("Oud Wood") }, + { id: "3", name: "Citrus Breeze", price: "$95", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-colored-bottles_23-2148241820.jpg", onProductClick: () => handlePurchase("Citrus Breeze") }, + { id: "4", name: "Spiced Amber", price: "$135", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pinecone-beige-shawl-dark-surface-free-space_140725-63518.jpg", onProductClick: () => handlePurchase("Spiced Amber") }, + { id: "5", name: "Ocean Mist", price: "$105", imageSrc: "http://img.b2bpic.net/free-photo/perfume-bottle-table_1194-639153.jpg", onProductClick: () => handlePurchase("Ocean Mist") }, + { id: "6", name: "Velvet Musk", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/liquor-beautiful-glass-bottle_176474-6070.jpg", onProductClick: () => handlePurchase("Velvet Musk") }, ]} /> @@ -168,4 +174,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file