7 Commits

Author SHA1 Message Date
1108afcb12 Merge version_6 into main
Merge version_6 into main
2026-04-07 20:11:30 +00:00
91c09aa323 Update src/app/page.tsx 2026-04-07 20:11:27 +00:00
fc8ad4d36c Merge version_6 into main
Merge version_6 into main
2026-04-07 20:09:45 +00:00
d04855fd7b Update src/app/page.tsx 2026-04-07 20:09:42 +00:00
954d4839a5 Merge version_5 into main
Merge version_5 into main
2026-04-07 15:00:49 +00:00
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,12 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia
import { Award, Calendar, DollarSign, User } from "lucide-react"; import { Award, Calendar, DollarSign, User } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
const handleContactClick = () => { const handleMessengerClick = () => {
const element = document.getElementById('contact'); window.open("https://m.me/your-facebook-page-id", "_blank");
if (element) { };
element.scrollIntoView({ behavior: 'smooth' });
} const handleFacebookPageClick = () => {
window.open("https://facebook.com/your-business-page", "_blank");
}; };
return ( return (
@@ -42,7 +43,7 @@ export default function LandingPage() {
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
button={{ text: "Book Appointment", onClick: handleContactClick }} button={{ text: "Book via Messenger", onClick: handleMessengerClick }}
brandName="Kasa de Belleza" brandName="Kasa de Belleza"
/> />
</div> </div>
@@ -52,8 +53,8 @@ export default function LandingPage() {
background={{ variant: "gradient-bars" }} background={{ variant: "gradient-bars" }}
title="Expert Care. Personal Touch. Beautiful Results." title="Expert Care. Personal Touch. Beautiful Results."
description="Orlandos premier destination for expert hair color, precision nails, and the dedicated attention you deserve." 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: "Book Appointment", onClick: handleMessengerClick }]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-details-hairdresser-salon_23-2149205859.jpg" imageSrc="http://img.b2bpic.net/free-photo/beautiful-woman-hands-salon_23-2148766608.jpg?id=11295408"
imageAlt="Salon transformation" imageAlt="Salon transformation"
/> />
</div> </div>
@@ -109,10 +110,11 @@ export default function LandingPage() {
<FaqSplitText <FaqSplitText
faqs={[ faqs={[
{ id: "1", title: "Our Studio Philosophy", content: "Kindness, quality, and community are the pillars of our work." }, { id: "1", title: "Our Studio Philosophy", content: "Kindness, quality, and community are the pillars of our work." },
{ id: "2", title: "Our Commitment", content: "Every client deserves expert care and a personal touch." } { id: "2", title: "Learn More", content: "Follow us on Facebook for more information about our treatments and culture." }
]} ]}
sideTitle="Our Mission" sideTitle="Our Mission"
sideDescription="We don't just do hair and nails; we care for the person in the chair." sideDescription="We don't just do hair and nails; we care for the person in the chair."
buttons={[{ text: "Visit Facebook Page", onClick: handleFacebookPageClick }]}
faqsAnimation="blur-reveal" faqsAnimation="blur-reveal"
useInvertedBackground={false} useInvertedBackground={false}
/> />
@@ -124,11 +126,11 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[
{ id: "1", title: "Where are you located?", content: "1794 N Chickasaw Trail, Orlando, FL." }, { id: "1", title: "Where are you located?", content: "1794 N Chickasaw Trail, Orlando, FL." },
{ id: "2", title: "How to book?", content: "Click the 'Book Appointment' button in the header!" } { id: "2", title: "How to book?", content: "Click the 'Book via Messenger' button in the header!" }
]} ]}
ctaTitle="Ready to look and feel your best?" ctaTitle="Ready to look and feel your best?"
ctaDescription="Visit us at 1794 N Chickasaw Trail, Orlando, FL." ctaDescription="Visit us at 1794 N Chickasaw Trail, Orlando, FL."
ctaButton={{ text: "Book Your Visit", onClick: handleContactClick }} ctaButton={{ text: "Book Appointment", onClick: handleMessengerClick }}
ctaIcon={Calendar} ctaIcon={Calendar}
/> />
</div> </div>
@@ -137,7 +139,7 @@ export default function LandingPage() {
<FooterLogoEmphasis <FooterLogoEmphasis
columns={[ columns={[
{ items: [{ label: "Home", href: "#" }, { label: "Services", href: "#services" }] }, { items: [{ label: "Home", href: "#" }, { label: "Services", href: "#services" }] },
{ items: [{ label: "About", href: "#about" }, { label: "Contact", onClick: handleContactClick }] } { items: [{ label: "Facebook", onClick: handleFacebookPageClick }, { label: "Messenger", onClick: handleMessengerClick }] }
]} ]}
logoText="Kasa de Belleza" logoText="Kasa de Belleza"
/> />