From 11dda39653452487c3b2c49efca9b6bc97b495ad Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Apr 2026 17:39:53 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f010329..2fff0bc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -59,7 +59,6 @@ export default function LandingPage() { title="Rooted in Tradition" tag="Our Philosophy" useInvertedBackground={false} - description="At Lavish Salon DHA, we believe in the harmony of nature and style. Our space is crafted with earthy tones and premium materials to ensure your grooming ritual is a grounding, elevated experience." /> @@ -71,9 +70,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} features={[ - { title: "Bespoke Haircuts", description: "Sculpted to reflect your unique character.", icon: Scissors }, - { title: "Organic Facials", description: "Restorative treatments using earth-derived ingredients.", icon: Sparkles }, - { title: "Man-Scaping", description: "Comprehensive grooming for the complete gentleman.", icon: Crown } + { title: "Bespoke Haircuts", description: "Sculpted to reflect your unique character.", icon: Scissors, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-grooming-their-client_23-2149205881.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-suit_23-2148401442.jpg" }] }, + { title: "Organic Facials", description: "Restorative treatments using earth-derived ingredients.", icon: Sparkles, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-grooming-their-client_23-2149205881.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-suit_23-2148401442.jpg" }] }, + { title: "Man-Scaping", description: "Comprehensive grooming for the complete gentleman.", icon: Crown, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-grooming-their-client_23-2149205881.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-suit_23-2148401442.jpg" }] } ]} /> @@ -86,9 +85,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} plans={[ - { id: "essentials", badge: "Essential", price: "$45", subtitle: "The Daily Refinement", features: ["Classic Haircut", "Beard Detail", "Hot Towel Finish"] }, - { id: "lavish", badge: "Popular", price: "$85", subtitle: "Signature Experience", features: ["Bespoke Haircut", "Organic Facial", "Hand Grooming"] }, - { id: "elite", badge: "Premium", price: "$130", subtitle: "The Full Ritual", features: ["Complete Restorative Care", "Advanced Skincare", "Extended Styling"] } + { id: "essentials", badge: "Essential", price: "$45", subtitle: "The Daily Refinement", features: ["Classic Haircut", "Beard Detail", "Hot Towel Finish"], buttons: [{ text: "Select", href: "#contact" }] }, + { id: "lavish", badge: "Popular", price: "$85", subtitle: "Signature Experience", features: ["Bespoke Haircut", "Organic Facial", "Hand Grooming"], buttons: [{ text: "Select", href: "#contact" }] }, + { id: "elite", badge: "Premium", price: "$130", subtitle: "The Full Ritual", features: ["Complete Restorative Care", "Advanced Skincare", "Extended Styling"], buttons: [{ text: "Select", href: "#contact" }] } ]} /> @@ -111,8 +110,8 @@ export default function LandingPage() { title="Secure Your Sanctuary" description="Reserve your time for an elevated grooming experience." inputs={[ - { name: "name", type: "text", placeholder: "Name" }, - { name: "email", type: "email", placeholder: "Email" } + { name: "name", type: "text", placeholder: "Name", required: true }, + { name: "email", type: "email", placeholder: "Email", required: true } ]} imageSrc="http://img.b2bpic.net/free-photo/hairdresser-grooming-their-client_23-2149205881.jpg" useInvertedBackground={false} -- 2.49.1