Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1108afcb12 | |||
| 91c09aa323 | |||
| fc8ad4d36c | |||
| d04855fd7b | |||
| 954d4839a5 | |||
| e5aa13e780 | |||
| 5a4f88b32b | |||
| deca8eb8dd | |||
| 77bd1aefb4 | |||
| d596c4e0c7 | |||
| 0ddd39ebe8 |
@@ -13,6 +13,14 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia
|
||||
import { Award, Calendar, DollarSign, User } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleMessengerClick = () => {
|
||||
window.open("https://m.me/your-facebook-page-id", "_blank");
|
||||
};
|
||||
|
||||
const handleFacebookPageClick = () => {
|
||||
window.open("https://facebook.com/your-business-page", "_blank");
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -35,7 +43,7 @@ export default function LandingPage() {
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{ text: "Book Appointment", href: "#contact" }}
|
||||
button={{ text: "Book via Messenger", onClick: handleMessengerClick }}
|
||||
brandName="Kasa de Belleza"
|
||||
/>
|
||||
</div>
|
||||
@@ -45,8 +53,8 @@ export default function LandingPage() {
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Expert Care. Personal Touch. Beautiful Results."
|
||||
description="Orlando’s premier destination for expert hair color, precision nails, and the dedicated attention you deserve."
|
||||
buttons={[{ text: "Schedule Your Transformation", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-details-hairdresser-salon_23-2149205859.jpg"
|
||||
buttons={[{ text: "Book Appointment", onClick: handleMessengerClick }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-woman-hands-salon_23-2148766608.jpg?id=11295408"
|
||||
imageAlt="Salon transformation"
|
||||
/>
|
||||
</div>
|
||||
@@ -76,9 +84,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
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: 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: 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: 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: "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: "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"
|
||||
description="High-end finishes and precision care tailored to your unique beauty."
|
||||
@@ -102,10 +110,11 @@ export default function LandingPage() {
|
||||
<FaqSplitText
|
||||
faqs={[
|
||||
{ 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"
|
||||
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"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -117,11 +126,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ 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?"
|
||||
ctaDescription="Visit us at 1794 N Chickasaw Trail, Orlando, FL."
|
||||
ctaButton={{ text: "Book Your Visit", href: "#" }}
|
||||
ctaButton={{ text: "Book Appointment", onClick: handleMessengerClick }}
|
||||
ctaIcon={Calendar}
|
||||
/>
|
||||
</div>
|
||||
@@ -130,7 +139,7 @@ export default function LandingPage() {
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "#" }, { label: "Services", href: "#services" }] },
|
||||
{ items: [{ label: "About", href: "#about" }, { label: "Contact", href: "#contact" }] }
|
||||
{ items: [{ label: "Facebook", onClick: handleFacebookPageClick }, { label: "Messenger", onClick: handleMessengerClick }] }
|
||||
]}
|
||||
logoText="Kasa de Belleza"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user