Update src/app/page.tsx

This commit is contained in:
2026-05-08 07:28:42 +00:00
parent c263675a31
commit b1d4c3ea6d

View File

@@ -32,7 +32,7 @@ export default function LandingPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Indulgence Beauty Salon"
brandName="LUMINA"
navItems={[
{ name: "Services", id: "products" },
{ name: "Experience", id: "ingredients" },
@@ -45,7 +45,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
title="Indulgence Beauty Salon: Your Radiance, Reimagined"
title="Your Radiance, Reimagined"
description="Step into a sanctuary of bespoke skincare and rejuvenating beauty treatments tailored to reveal your most luminous self."
tag="Luxury Beauty Salon"
tagIcon={Sparkles}
@@ -73,8 +73,6 @@ export default function LandingPage() {
title="Trusted By Style Icons"
description="Our expertise in advanced aesthetic care is recognized by top beauty publications."
names={["Vogue Beauty", "Harper's Bazaar", "Allure", "Elle", "Byrdie"]}
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
@@ -85,11 +83,12 @@ export default function LandingPage() {
tag="Beauty Menu"
tagIcon={Award}
products={[
{ id: "1", name: "Luminous Hydration Facial", price: "$150", variant: "60 Min", imageSrc: "http://img.b2bpic.net/free-photo/woman-lying-massage-room-face-up_1262-413.jpg" },
{ id: "2", name: "Gold Radiance Treatment", price: "$280", variant: "90 Min", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-using-serum_23-2148888231.jpg" },
{ id: "3", name: "Botanical Peel", price: "$120", variant: "45 Min", imageSrc: "http://img.b2bpic.net/free-photo/woman-looking-camera-with-facial-mud-treatment_23-2148287336.jpg" },
{ id: "4", name: "Sculpt & Contour", price: "$210", variant: "75 Min", imageSrc: "http://img.b2bpic.net/free-photo/doctor-examining-womans-face-cosmetic-treatment_107420-65108.jpg" }
{ id: "1", name: "Luminous Hydration Facial", price: "$150", variant: "60 Min", imageSrc: "http://img.b2bpic.net/free-photo/woman-lying-massage-room-face-up_1262-413.jpg", onProductClick: () => window.location.href = '#contact' },
{ id: "2", name: "Gold Radiance Treatment", price: "$280", variant: "90 Min", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-using-serum_23-2148888231.jpg", onProductClick: () => window.location.href = '#contact' },
{ id: "3", name: "Botanical Peel", price: "$120", variant: "45 Min", imageSrc: "http://img.b2bpic.net/free-photo/woman-looking-camera-with-facial-mud-treatment_23-2148287336.jpg", onProductClick: () => window.location.href = '#contact' },
{ id: "4", name: "Sculpt & Contour", price: "$210", variant: "75 Min", imageSrc: "http://img.b2bpic.net/free-photo/doctor-examining-womans-face-cosmetic-treatment_107420-65108.jpg", onProductClick: () => window.location.href = '#contact' }
]}
buttons={[{text: "Book Now", href: "#contact"}]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
@@ -99,7 +98,7 @@ export default function LandingPage() {
<div id="ingredients" data-section="ingredients">
<FeatureCardSix
title="The Indulgence Promise"
title="The Lumina Promise"
description="We combine scientific precision with a holistic approach to ensure your beauty reflects your vitality."
tag="Philosophy"
tagIcon={Beaker}
@@ -108,15 +107,13 @@ export default function LandingPage() {
{ title: "Expert Aestheticians", description: "Trained in the latest global techniques for holistic care.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-using-face-treatment-her-client_23-2149037150.jpg" },
{ title: "Personalized Routines", description: "We tailor every session to your unique skin journey.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-pink-bathrobe-after-shower-writing-blue-wall-beauty-water-cream-selfcare-shower-bathroom_140725-65463.jpg" }
]}
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="influencers" data-section="influencers">
<FeatureCardOne
title="The Indulgence Glow"
description="See real results from our satisfied clients who trust Indulgence with their radiance."
title="The Lumina Glow"
description="See real results from our satisfied clients who trust Lumina with their radiance."
tag="Community Gallery"
tagIcon={Heart}
animationType="depth-3d"
@@ -125,9 +122,6 @@ export default function LandingPage() {
{ title: "Our Space", description: "Serene treatment rooms", imageSrc: "http://img.b2bpic.net/free-photo/serene-spa-interior_23-2151945692.jpg" },
{ title: "Client Care", description: "Dedicated attention", imageSrc: "http://img.b2bpic.net/free-photo/women-discussing-spa-treatment_23-2149871830.jpg" }
]}
gridVariant="uniform-all-items-equal"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
@@ -142,8 +136,6 @@ export default function LandingPage() {
{ id: "2", value: "5k+", title: "Facials Performed", description: "Over 5,000 satisfied guests.", imageSrc: "http://img.b2bpic.net/free-photo/woman-cosmetologist-making-beauty-procedures_1303-26028.jpg" }
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
@@ -158,8 +150,6 @@ export default function LandingPage() {
{ id: "2", category: "Advice", title: "The Power of Vitamin C", excerpt: "Achieve radiant skin easily.", imageSrc: "http://img.b2bpic.net/free-photo/spa-arrangement-with-cremes_23-2148549082.jpg", authorName: "James M.", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-portrait-smiley-man_23-2148221703.jpg", date: "Feb 2026" }
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
@@ -175,8 +165,6 @@ export default function LandingPage() {
{ id: "2", title: "Do you offer trials?", content: "Yes, our intro consultations are perfect for starting." }
]}
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
@@ -189,13 +177,12 @@ export default function LandingPage() {
{ name: "email", type: "email", placeholder: "Email", required: true }
]}
imageSrc="http://img.b2bpic.net/free-photo/empty-hotel-lounge-with-cozy-furniture_482257-67425.jpg"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Indulgence Beauty Salon"
logoText="LUMINA"
columns={[
{ items: [{ label: "Shop" }, { label: "Book" }] },
{ items: [{ label: "About" }, { label: "Blog" }] }