4 Commits

Author SHA1 Message Date
deca8eb8dd Update src/app/page.tsx 2026-04-01 22:09:18 +00:00
77bd1aefb4 Merge version_3 into main
Merge version_3 into main
2026-04-01 22:03:51 +00:00
d596c4e0c7 Update src/app/page.tsx 2026-04-01 22:03:45 +00:00
0ddd39ebe8 Merge version_2 into main
Merge version_2 into main
2026-04-01 13:37:04 +00:00

View File

@@ -13,6 +13,13 @@ 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 element = document.getElementById('contact');
if (element) {
element.scrollIntoView({ behavior: 'smooth' });
}
};
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-magnetic" defaultButtonVariant="hover-magnetic"
@@ -35,7 +42,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", href: "#contact" }} button={{ text: "Book Appointment", onClick: handleContactClick }}
brandName="Kasa de Belleza" brandName="Kasa de Belleza"
/> />
</div> </div>
@@ -45,7 +52,7 @@ 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", href: "#contact" }]} buttons={[{ text: "Schedule Your Transformation", onClick: handleContactClick }]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-details-hairdresser-salon_23-2149205859.jpg" imageSrc="http://img.b2bpic.net/free-photo/close-up-details-hairdresser-salon_23-2149205859.jpg"
imageAlt="Salon transformation" imageAlt="Salon transformation"
/> />
@@ -76,9 +83,9 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ id: 1, title: "Expert Hair Color", description: "Specialize in color corrections and transformations.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-urban-woman_23-2148012819.jpg" }, { id: 1, title: "Expert Hair Color", description: "Achieve vibrant, long-lasting color tailored to your unique style.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-urban-woman_23-2148012819.jpg" },
{ id: 2, title: "Designer Nails", description: "Precision work that is beautiful and long-lasting.", imageSrc: "http://img.b2bpic.net/free-photo/nail-hygiene-care-feminine-hands_23-2148766574.jpg" }, { id: 2, title: "Designer Nails", description: "Enjoy precision, resilient nail treatments that stand the test of time.", imageSrc: "http://img.b2bpic.net/free-photo/nail-hygiene-care-feminine-hands_23-2148766574.jpg" },
{ id: 3, title: "Professional Styling", description: "High-end finishes by master stylists.", imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-her-hair-dyed-beauty-salon_23-2149167364.jpg" } { id: 3, title: "Professional Styling", description: "Experience a polished, high-end finish crafted by our expert stylists.", imageSrc: "http://img.b2bpic.net/free-photo/woman-getting-her-hair-dyed-beauty-salon_23-2149167364.jpg" }
]} ]}
title="Our Services" title="Our Services"
description="High-end finishes and precision care tailored to your unique beauty." description="High-end finishes and precision care tailored to your unique beauty."
@@ -121,7 +128,7 @@ export default function LandingPage() {
]} ]}
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", href: "#" }} ctaButton={{ text: "Book Your Visit", onClick: handleContactClick }}
ctaIcon={Calendar} ctaIcon={Calendar}
/> />
</div> </div>
@@ -130,7 +137,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", href: "#contact" }] } { items: [{ label: "About", href: "#about" }, { label: "Contact", onClick: handleContactClick }] }
]} ]}
logoText="Kasa de Belleza" logoText="Kasa de Belleza"
/> />