diff --git a/src/app/page.tsx b/src/app/page.tsx index b342ea6..cf2894b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,6 +15,10 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa import { MessageCircle, ShieldCheck, Truck } from "lucide-react"; export default function LandingPage() { + const handleWhatsAppClick = (productName: string) => { + window.open(`https://wa.me/256700000000?text=I'd like to order: ${productName}`, "_blank"); + }; + return ( handleWhatsAppClick("Atitus Midnight Oud")}, { - id: "p2", name: "Gallery Gold Blossom", price: "UGX 180,000", imageSrc: "http://img.b2bpic.net/free-photo/orchid-flower-against-gold-background_23-2149244105.jpg"}, + id: "p2", name: "Gallery Gold Blossom", price: "UGX 180,000", imageSrc: "http://img.b2bpic.net/free-photo/orchid-flower-against-gold-background_23-2149244105.jpg", onProductClick: () => handleWhatsAppClick("Gallery Gold Blossom")}, { - id: "p3", name: "Azure Sky Intense", price: "UGX 220,000", imageSrc: "http://img.b2bpic.net/free-photo/glass-bottle-rose-wine-blue-tablecloth_114579-22805.jpg"}, + id: "p3", name: "Azure Sky Intense", price: "UGX 220,000", imageSrc: "http://img.b2bpic.net/free-photo/glass-bottle-rose-wine-blue-tablecloth_114579-22805.jpg", onProductClick: () => handleWhatsAppClick("Azure Sky Intense")}, { - id: "p4", name: "Velvet Rosewood", price: "UGX 210,000", imageSrc: "http://img.b2bpic.net/free-photo/bottle-perfume-based-soil-ingredients_23-2150756829.jpg"}, + id: "p4", name: "Velvet Rosewood", price: "UGX 210,000", imageSrc: "http://img.b2bpic.net/free-photo/bottle-perfume-based-soil-ingredients_23-2150756829.jpg", onProductClick: () => handleWhatsAppClick("Velvet Rosewood")}, { - id: "p5", name: "Oud Mystique", price: "UGX 270,000", imageSrc: "http://img.b2bpic.net/free-photo/covid-paclose-urty-still-life-with-bottle_23-2149299918.jpg"}, + id: "p5", name: "Oud Mystique", price: "UGX 270,000", imageSrc: "http://img.b2bpic.net/free-photo/covid-paclose-urty-still-life-with-bottle_23-2149299918.jpg", onProductClick: () => handleWhatsAppClick("Oud Mystique")}, { - id: "p6", name: "Silver Moonlight", price: "UGX 195,000", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-colorful-leaves-flowers_23-2149289773.jpg"}, + id: "p6", name: "Silver Moonlight", price: "UGX 195,000", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-colorful-leaves-flowers_23-2149289773.jpg", onProductClick: () => handleWhatsAppClick("Silver Moonlight")}, ]} title="The Gallery Collection" description="Discover our signature scents." @@ -206,4 +210,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file