Update src/app/page.tsx

This commit is contained in:
2026-05-14 00:00:08 +00:00
parent 9086c12536
commit 1eb00bd2f3

View File

@@ -27,7 +27,7 @@ export default function LandingPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<div id="nav" data-section="nav" className="animate-in fade-in duration-1000">
<NavbarStyleFullscreen
navItems={[
{ name: "Collection", id: "#products" },
@@ -53,7 +53,7 @@ export default function LandingPage() {
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-natural-argan-oil-dropper_23-2149016620.jpg", imageAlt: "Organic serum bottle" },
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-eucalyptus-with-beauty-products_23-2149440672.jpg", imageAlt: "Beauty set" },
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-with-flower_23-2150512472.jpg", imageAlt: "Natural essence" },
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/skin-care-banner-concept-with-lotion_23-2149449094.jpg", imageAlt: "Glowing skin serum" },
{ id: "5", imageSrc: "http://img.b2bpic.net/skin-care-banner-concept-with-lotion_23-2149449094.jpg", imageAlt: "Glowing skin serum" },
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/front-view-skin-oil-dropper_23-2148761494.jpg", imageAlt: "Botanical jar" }
]}
/>
@@ -146,7 +146,7 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<div id="contact" data-section="contact" className="animate-in slide-in-from-bottom-8 duration-1000">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "radial-gradient" }}
@@ -157,7 +157,7 @@ export default function LandingPage() {
/>
</div>
<div id="footer" data-section="footer">
<div id="footer" data-section="footer" className="opacity-80 hover:opacity-100 transition-opacity duration-700">
<FooterLogoReveal
logoText="Lumière"
leftLink={{ text: "Privacy", href: "#" }}
@@ -167,4 +167,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}