Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d29ab47e0e | |||
| 273fe15654 | |||
| 3f8432c775 | |||
| d27ed57b78 | |||
| aeca0b0d4d | |||
| 3ccef6d15f | |||
| 60dc597f8a |
@@ -1,7 +1,7 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
||||||
@@ -27,25 +27,19 @@ export default function LandingPage() {
|
|||||||
secondaryButtonStyle="layered"
|
secondaryButtonStyle="layered"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="normal"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<NavbarStyleCentered
|
||||||
<NavbarLayoutFloatingInline
|
navItems={[
|
||||||
brandName="Luxe Beauty"
|
{ name: 'Home', id: '/' },
|
||||||
navItems={[
|
{ name: 'About', id: 'mission' },
|
||||||
{ name: "Home", id: "hero" },
|
{ name: 'Services', id: 'services' },
|
||||||
{ name: "Services", id: "services" },
|
{ name: 'Gallery', id: 'gallery' },
|
||||||
{ name: "Treatments", id: "features" },
|
{ name: 'Contact', id: 'contact' }
|
||||||
{ name: "Innovation", id: "timeline" },
|
]}
|
||||||
{ name: "Gallery", id: "gallery" }
|
button={{ text: 'Book Now', href: 'contact' }}
|
||||||
]}
|
brandName="Luxe Beauty"
|
||||||
button={{ text: "Book Now", href: "#contact" }}
|
/>
|
||||||
animateOnLoad={true}
|
|
||||||
className="fixed top-6 left-0 right-0 z-50 px-6 lg:px-12 flex justify-center"
|
|
||||||
navItemClassName="text-sm font-body tracking-wide hover:text-primary-cta transition-colors"
|
|
||||||
buttonClassName="bg-primary-cta text-primary-cta-text px-6 py-2 rounded-full hover:shadow-lg transition-all"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero" className="pt-32">
|
||||||
<HeroBillboardTestimonial
|
<HeroBillboardTestimonial
|
||||||
tag="Transformative Beauty"
|
tag="Transformative Beauty"
|
||||||
title="Redefining Beauty & Wellness Experiences"
|
title="Redefining Beauty & Wellness Experiences"
|
||||||
@@ -70,8 +64,8 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
testimonialRotationInterval={5000}
|
testimonialRotationInterval={5000}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book Your Experience", href: "#contact" },
|
{ text: "Book Your Experience", href: "contact" },
|
||||||
{ text: "Explore Services", href: "#services" }
|
{ text: "Explore Services", href: "services" }
|
||||||
]}
|
]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
@@ -87,7 +81,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Our Philosophy", href: "#services" }
|
{ text: "Our Philosophy", href: "services" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="blur-reveal"
|
buttonAnimation="blur-reveal"
|
||||||
/>
|
/>
|
||||||
@@ -116,7 +110,7 @@ export default function LandingPage() {
|
|||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View All Services", href: "#gallery" }
|
{ text: "View All Services", href: "gallery" }
|
||||||
]}
|
]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
mediaPosition="left"
|
mediaPosition="left"
|
||||||
@@ -271,4 +265,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user