From 144781710d4ec78475738c437b087e6447d55515 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 27 May 2026 02:33:27 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9cf4ae0..2e242f1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -118,12 +118,12 @@ export default function LandingPage() { title="Our Professional Services" description="Discover a full range of luxurious haircare services tailored to your unique style and needs." features={[ - { title: "Haircuts", description: "Precision cuts for men and women, tailored to your style.", buttonIcon: Scissors, imageSrc: getAssetUrl("service-haircut"), imageAlt: getAssetAlt("service-haircut", "Professional haircut") }, - { title: "Hair Styling", description: "From elegant updos to casual waves, perfect for any occasion.", buttonIcon: Brush, imageSrc: getAssetUrl("service-styling"), imageAlt: getAssetAlt("service-styling", "Hair styling") }, - { title: "Hair Coloring", description: "Vibrant colors, subtle highlights, and expert color corrections.", buttonIcon: Palette, imageSrc: getAssetUrl("service-coloring"), imageAlt: getAssetAlt("service-coloring", "Hair coloring") }, - { title: "Wash & Blowout", description: "Indulge in a relaxing wash followed by a professional blowout.", buttonIcon: Droplet, imageSrc: getAssetUrl("service-blowout"), imageAlt: getAssetAlt("service-blowout", "Wash and blowout") }, - { title: "Hair Treatments", description: "Restore health and shine with our deep conditioning and restorative treatments.", buttonIcon: Leaf, imageSrc: getAssetUrl("service-treatment"), imageAlt: getAssetAlt("service-treatment", "Hair treatment") }, - { title: "Specialty Services", description: "Extensions, perms, and other advanced haircare solutions.", buttonIcon: Sparkles, imageSrc: getAssetUrl("service-specialty"), imageAlt: getAssetAlt("service-specialty", "Specialty hair services") } + { title: "Haircuts", description: "Precision cuts for men and women, tailored to your style.", buttonIcon: Scissors, buttonHref: "#contact", imageSrc: getAssetUrl("service-haircut"), imageAlt: getAssetAlt("service-haircut", "Professional haircut") }, + { title: "Hair Styling", description: "From elegant updos to casual waves, perfect for any occasion.", buttonIcon: Brush, buttonHref: "#contact", imageSrc: getAssetUrl("service-styling"), imageAlt: getAssetAlt("service-styling", "Hair styling") }, + { title: "Hair Coloring", description: "Vibrant colors, subtle highlights, and expert color corrections.", buttonIcon: Palette, buttonHref: "#contact", imageSrc: getAssetUrl("service-coloring"), imageAlt: getAssetAlt("service-coloring", "Hair coloring") }, + { title: "Wash & Blowout", description: "Indulge in a relaxing wash followed by a professional blowout.", buttonIcon: Droplet, buttonHref: "#contact", imageSrc: getAssetUrl("service-blowout"), imageAlt: getAssetAlt("service-blowout", "Wash and blowout") }, + { title: "Hair Treatments", description: "Restore health and shine with our deep conditioning and restorative treatments.", buttonIcon: Leaf, buttonHref: "#contact", imageSrc: getAssetUrl("service-treatment"), imageAlt: getAssetAlt("service-treatment", "Hair treatment") }, + { title: "Specialty Services", description: "Extensions, perms, and other advanced haircare solutions.", buttonIcon: Sparkles, buttonHref: "#contact", imageSrc: getAssetUrl("service-specialty"), imageAlt: getAssetAlt("service-specialty", "Specialty hair services") } ]} textboxLayout="default" useInvertedBackground={false} @@ -197,6 +197,7 @@ export default function LandingPage() { inputPlaceholder="Your email address" buttonText="Send Message" termsText="By sending a message you're confirming that you agree with our privacy policy." + onSubmit={(email) => { console.log("Contact form submitted with email:", email); alert("Thank you for your message! We'll be in touch shortly."); }} /> -- 2.49.1