diff --git a/src/app/page.tsx b/src/app/page.tsx index e52445e..1cadc0c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -72,10 +72,10 @@ export default function LandingPage() { title="Our Signature Services & Pricing" description="Indulge in our wide range of beauty treatments. Each service is designed to offer the best experience and value." products={[ - { id: "service-1", brand: "Hair", name: "Haircut & Styling", price: "₹500-₹1500", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/woman-styling-her-hair-saloon_107420-12141.jpg", imageAlt: "Woman getting haircut" }, - { id: "service-2", brand: "Face", name: "Luxury Facial", price: "₹1200-₹3000", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/masseur-taking-care-her-client_23-2149273886.jpg", imageAlt: "Woman receiving facial treatment" }, - { id: "service-3", brand: "Body", name: "Waxing (Full Body)", price: "₹800-₹2000", rating: 4, reviewCount: "80", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-sitting-armchair-looking-her-friend_23-2147894560.jpg", imageAlt: "Beauty professional doing waxing" }, - { id: "service-4", brand: "Nails", name: "Manicure & Pedicure", price: "₹700-₹1800", rating: 5, reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/nail-care-concept-close-up_23-2149171316.jpg", imageAlt: "Manicure and pedicure session" } + { id: "service-1", brand: "Hair", name: "Haircut & Styling", price: "₹500-₹1500", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/woman-styling-her-hair-saloon_107420-12141.jpg", imageAlt: "Woman getting haircut", onProductClick: () => window.open("https://wa.me/YOUR_WHATSAPP_NUMBER?text=I'd like to book a Haircut & Styling", "_blank") }, + { id: "service-2", brand: "Face", name: "Luxury Facial", price: "₹1200-₹3000", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/masseur-taking-care-her-client_23-2149273886.jpg", imageAlt: "Woman receiving facial treatment", onProductClick: () => window.open("https://wa.me/YOUR_WHATSAPP_NUMBER?text=I'd like to book a Luxury Facial", "_blank") }, + { id: "service-3", brand: "Body", name: "Waxing (Full Body)", price: "₹800-₹2000", rating: 4, reviewCount: "80", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-sitting-armchair-looking-her-friend_23-2147894560.jpg", imageAlt: "Beauty professional doing waxing", onProductClick: () => window.open("https://wa.me/YOUR_WHATSAPP_NUMBER?text=I'd like to book Waxing (Full Body)", "_blank") }, + { id: "service-4", brand: "Nails", name: "Manicure & Pedicure", price: "₹700-₹1800", rating: 5, reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/nail-care-concept-close-up_23-2149171316.jpg", imageAlt: "Manicure and pedicure session", onProductClick: () => window.open("https://wa.me/YOUR_WHATSAPP_NUMBER?text=I'd like to book Manicure & Pedicure", "_blank") } ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -131,4 +131,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file