2 Commits

Author SHA1 Message Date
e5aa13e780 Update src/app/page.tsx 2026-04-07 15:00:46 +00:00
5a4f88b32b Merge version_4 into main
Merge version_4 into main
2026-04-01 22:09:24 +00:00

View File

@@ -13,11 +13,9 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia
import { Award, Calendar, DollarSign, User } from "lucide-react";
export default function LandingPage() {
const handleContactClick = () => {
const element = document.getElementById('contact');
if (element) {
element.scrollIntoView({ behavior: 'smooth' });
}
const handleWhatsAppClick = () => {
const message = encodeURIComponent("Hi! I'd like to book an appointment at Kasa de Belleza. Could you help me with a reservation?");
window.open(`https://wa.me/14070000000?text=${message}`, '_blank');
};
return (
@@ -42,7 +40,7 @@ export default function LandingPage() {
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Book Appointment", onClick: handleContactClick }}
button={{ text: "Book Appointment", onClick: handleWhatsAppClick }}
brandName="Kasa de Belleza"
/>
</div>
@@ -52,7 +50,7 @@ export default function LandingPage() {
background={{ variant: "gradient-bars" }}
title="Expert Care. Personal Touch. Beautiful Results."
description="Orlandos premier destination for expert hair color, precision nails, and the dedicated attention you deserve."
buttons={[{ text: "Schedule Your Transformation", onClick: handleContactClick }]}
buttons={[{ text: "Schedule Your Transformation", onClick: handleWhatsAppClick }]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-details-hairdresser-salon_23-2149205859.jpg"
imageAlt="Salon transformation"
/>
@@ -128,7 +126,7 @@ export default function LandingPage() {
]}
ctaTitle="Ready to look and feel your best?"
ctaDescription="Visit us at 1794 N Chickasaw Trail, Orlando, FL."
ctaButton={{ text: "Book Your Visit", onClick: handleContactClick }}
ctaButton={{ text: "Book Your Visit", onClick: handleWhatsAppClick }}
ctaIcon={Calendar}
/>
</div>
@@ -137,7 +135,7 @@ export default function LandingPage() {
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "#" }, { label: "Services", href: "#services" }] },
{ items: [{ label: "About", href: "#about" }, { label: "Contact", onClick: handleContactClick }] }
{ items: [{ label: "About", href: "#about" }, { label: "Contact", onClick: handleWhatsAppClick }] }
]}
logoText="Kasa de Belleza"
/>