Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f13de871d0 | |||
| 365b176a93 | |||
| a70d82631f | |||
| c819563db9 | |||
| 0eef407f07 | |||
| 047f5e2d2e | |||
| c0ad9ef23a | |||
| 4e4060202e | |||
| 077aba95da | |||
| 08e6a42007 | |||
| 44bba9e97c |
@@ -3,11 +3,9 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { MapPin } from "lucide-react";
|
||||
|
||||
@@ -30,7 +28,6 @@ export default function LandingPage() {
|
||||
brandName="BAE Beauty Salon"
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
@@ -43,7 +40,7 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
logoText="BAE Beauty Salon"
|
||||
description="Best Lashes, Nails and Nails Salon in Dubai"
|
||||
description="Best Lashes, Nails and Hair Salon in Dubai"
|
||||
buttons={[
|
||||
{
|
||||
text: "Book via WhatsApp", href: "https://wa.me/971585310080"
|
||||
@@ -54,43 +51,26 @@ export default function LandingPage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT21DDEbCUKElwIvjwYyyd5jJX/uploaded-1773738702675-vn92vqrl.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT21DDEbCUKElwIvjwYyyd5jJX/uploaded-1773739781901-vkzwf5ur.png"
|
||||
imageAlt="luxury lash extensions close-up detail"
|
||||
mediaAnimation="opacity"
|
||||
frameStyle="card"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{
|
||||
type: "text", content: "About BAE Beauty Salon"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us", href: "#contact"
|
||||
}
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<ProductCardOne
|
||||
title="Our Services"
|
||||
description="Each treatment is performed with attention to detail, hygiene, and long-lasting results. We combine Russian beauty techniques with Dubai trends for a premium experience."
|
||||
products={[
|
||||
{
|
||||
id: "lashes", name: "Lashes", price: "Premium Extensions & Lifting", imageSrc: "http://img.b2bpic.net/free-photo/non-binary-flag-eye-makeup_23-2151989366.jpg", imageAlt: "professional lash extension application close-up"
|
||||
id: "lashes", name: "Lashes", price: "Starting from 150 AED", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT21DDEbCUKElwIvjwYyyd5jJX/uploaded-1773738702675-vn92vqrl.png?_wi=2", imageAlt: "professional lash extension application close-up"
|
||||
},
|
||||
{
|
||||
id: "nails", name: "Nails", price: "Gel & Nail Art", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT21DDEbCUKElwIvjwYyyd5jJX/uploaded-1773738926837-l63hjbge.webp", imageAlt: "gel nail polish art manicure detail"
|
||||
id: "nails", name: "Nails", price: "Starting from 150 AED", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT21DDEbCUKElwIvjwYyyd5jJX/uploaded-1773738926837-l63hjbge.webp", imageAlt: "gel nail polish art manicure detail"
|
||||
},
|
||||
{
|
||||
id: "pedicure", name: "Hair", price: "Classic & Extra", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT21DDEbCUKElwIvjwYyyd5jJX/uploaded-1773738940618-8jv5cel4.webp", imageAlt: "luxury spa pedicure feet care detail"
|
||||
id: "pedicure", name: "Hair", price: "Starting from 150 AED", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AT21DDEbCUKElwIvjwYyyd5jJX/uploaded-1773738940618-8jv5cel4.webp", imageAlt: "luxury spa pedicure feet care detail"
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
@@ -106,34 +86,6 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
testimonial="Absolutely love my lashes! The precision and attention to detail is exceptional. The salon is so clean and welcoming. Highly recommend BAE Beauty!"
|
||||
rating={5}
|
||||
author="Fatima Al-Mansouri"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-modern-woman-home_23-2148115589.jpg", alt: "professional portrait woman beauty headshot"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-woman-couch-with-man-holding-her-head_23-2148857583.jpg", alt: "blonde woman smiling portrait professional"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-preparing-girl-haircut-procedure_23-2147769867.jpg", alt: "brunette woman portrait smiling professional"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12661.jpg", alt: "arab woman portrait professional smiling"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/confident-european-businesswoman-smiling-closeup-portrait-jobs-career-campaign_53876-129407.jpg", alt: "asian woman portrait professional headshot"
|
||||
}
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
title="Common Questions"
|
||||
@@ -169,7 +121,7 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
<ContactCTA
|
||||
tag="Get In Touch"
|
||||
title="Visit BAE Beauty Salon"
|
||||
description="Oxford Tower, Shop 3, Business Bay, Dubai. We're here to help you look and feel your best."
|
||||
@@ -177,9 +129,12 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter phone number for instant WhatsApp booking"
|
||||
buttonText="Get Instant Quote"
|
||||
termsText="By subscribing, you agree to receive beauty tips and exclusive offers from BAE Beauty Salon."
|
||||
buttons={[
|
||||
{
|
||||
text: "WhatsApp Us", href: "https://wa.me/971585310080"
|
||||
}
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -197,7 +152,6 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Instagram", href: "https://instagram.com/bae_beautysalon_" }
|
||||
@@ -206,7 +160,6 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "WhatsApp: +971 58 531 0080", href: "https://wa.me/971585310080" },
|
||||
{ label: "Email: info@baebeauty.ae", href: "mailto:info@baebeauty.ae" },
|
||||
{ label: "Address: Oxford Tower, Shop 3, Business Bay", href: "https://maps.google.com/?q=Oxford+Tower+Business+Bay+Dubai" },
|
||||
{ label: "Hours: 10 AM - 9 PM Daily", href: "#" }
|
||||
]
|
||||
@@ -217,4 +170,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user