4 Commits

Author SHA1 Message Date
273fe15654 Update src/app/page.tsx 2026-03-12 11:24:22 +00:00
3f8432c775 Merge version_5 into main
Merge version_5 into main
2026-03-12 11:21:31 +00:00
d27ed57b78 Update src/app/page.tsx 2026-03-12 11:21:21 +00:00
aeca0b0d4d Merge version_4 into main
Merge version_4 into main
2026-03-12 11:19:30 +00:00

View File

@@ -1,7 +1,7 @@
"use client";
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 InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
@@ -27,23 +27,17 @@ export default function LandingPage() {
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Luxe Beauty"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "services" },
{ name: "Treatments", id: "features" },
{ name: "Innovation", id: "timeline" },
{ name: "Gallery", id: "gallery" }
]}
button={{ text: "Book Now", href: "#contact" }}
animateOnLoad={true}
className="fixed top-0 left-0 right-0 z-50 px-6 lg:px-12 flex justify-center pt-6"
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>
<NavbarStyleCentered
navItems={[
{ name: 'Home', id: '/' },
{ name: 'About', id: 'mission' },
{ name: 'Services', id: 'services' },
{ name: 'Gallery', id: 'gallery' },
{ name: 'Contact', id: 'contact' }
]}
button={{ text: 'Book Now', href: 'contact' }}
brandName="Luxe Beauty"
/>
<div id="hero" data-section="hero" className="pt-32">
<HeroBillboardTestimonial
@@ -70,8 +64,8 @@ export default function LandingPage() {
]}
testimonialRotationInterval={5000}
buttons={[
{ text: "Book Your Experience", href: "#contact" },
{ text: "Explore Services", href: "#services" }
{ text: "Book Your Experience", href: "contact" },
{ text: "Explore Services", href: "services" }
]}
useInvertedBackground={false}
tagAnimation="blur-reveal"
@@ -87,7 +81,7 @@ export default function LandingPage() {
]}
useInvertedBackground={false}
buttons={[
{ text: "Our Philosophy", href: "#services" }
{ text: "Our Philosophy", href: "services" }
]}
buttonAnimation="blur-reveal"
/>
@@ -116,7 +110,7 @@ export default function LandingPage() {
}
]}
buttons={[
{ text: "View All Services", href: "#gallery" }
{ text: "View All Services", href: "gallery" }
]}
useInvertedBackground={false}
mediaPosition="left"
@@ -271,4 +265,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}