Update src/app/page.tsx

This commit is contained in:
2026-06-10 07:17:20 +00:00
parent 3499d92115
commit 34d4ae0ffa

View File

@@ -153,7 +153,7 @@ export default function LandingPage() {
{
id: "product-5", name: "Aube Secrète", price: "$175", variant: "Eau de Parfum", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-product-container-with-art-nouveau-inspired-sun-relief-background_23-2151420629.jpg", imageAlt: "Aube Secrète perfume bottle"},
{
id: "product-6", name: "Voile Lactée", price: "$200", variant: "Extrait de Parfum", imageSrc: "http://img.b2bpic.net/free-photo/aesthetic-bottles-still-life-home-decor_53876-133314.jpg", imageAlt: "Voile Lactée perfume bottle"},
id: "product-6", name: "Voile Lactée", price: "$200", variant: "Extrait de Parfum", imageSrc: "http://img.b2bpic.net/free-photo/aesthetic-bottles-still-life-home-decor_53876-133314.jpg", alt: "Voile Lactée perfume bottle"},
]}
title="Our Signature Collection"
description="Discover timeless fragrances that embody elegance and mystery. Each bottle tells a story, captivating senses with every delicate spray."
@@ -221,17 +221,17 @@ export default function LandingPage() {
description="For bespoke fragrance consultations, exclusive collaborations, or any inquiries, our dedicated team is here to assist you. Reach out and experience personalized service."
inputs={[
{
name: "name", type: "text", placeholder: "Your Name", required: true,
name: "name", type: "text", placeholder: "Your Name", required: true
},
{
name: "email", type: "email", placeholder: "Your Email", required: true,
name: "email", type: "email", placeholder: "Your Email", required: true
},
{
name: "subject", type: "text", placeholder: "Subject"},
name: "subject", type: "text", placeholder: "Subject"}
]}
textarea={{
name: "message", placeholder: "Your Message", rows: 5,
required: true,
required: true
}}
imageSrc="http://img.b2bpic.net/free-photo/wedding-still-life-with-glasses_23-2147975934.jpg"
imageAlt="Elegant perfume bottle with atmospheric lighting"
@@ -255,7 +255,7 @@ export default function LandingPage() {
label: "Discovery Sets", href: "#"},
{
label: "Gift Cards", href: "#"},
],
]
},
{
title: "Company", items: [
@@ -265,7 +265,7 @@ export default function LandingPage() {
label: "Craftsmanship", href: "#features"},
{
label: "Sustainability", href: "#"},
],
]
},
{
title: "Support", items: [
@@ -277,8 +277,8 @@ export default function LandingPage() {
label: "Shipping & Returns", href: "#"},
{
label: "Privacy Policy", href: "#"},
],
},
]
}
]}
copyrightText="© 2024 NOCTURIA PARFUM. All rights reserved."
/>
@@ -286,4 +286,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}