2 Commits

Author SHA1 Message Date
12383de424 Update src/app/page.tsx 2026-03-21 06:18:28 +00:00
a27fa0be86 Merge version_1 into main
Merge version_1 into main
2026-03-21 06:16:11 +00:00

View File

@@ -38,6 +38,7 @@ export default function LandingPage() {
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Pricing", id: "pricing" }, { name: "Pricing", id: "pricing" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
bottomLeftText="Premium Skincare Science" bottomLeftText="Premium Skincare Science"
@@ -298,13 +299,19 @@ export default function LandingPage() {
}, },
{ {
id: "6", title: "Do you offer subscription services?", content: "Yes! Our subscription plans deliver your favorite products monthly at 15% off. You can pause, skip, or cancel anytime with no penalties. It's the perfect way to maintain your routine and save." id: "6", title: "Do you offer subscription services?", content: "Yes! Our subscription plans deliver your favorite products monthly at 15% off. You can pause, skip, or cancel anytime with no penalties. It's the perfect way to maintain your routine and save."
},
{
id: "7", title: "What makes your skincare different from other brands?", content: "LuxeGlow uniquely combines cutting-edge dermatological science with 100% natural, sustainably sourced ingredients. Every product is clinically tested, dermatologist-approved, and backed by peer-reviewed research. We also maintain complete transparency about our ingredients and manufacturing process."
},
{
id: "8", title: "Can I use LuxeGlow products if I have acne-prone skin?", content: "Yes, absolutely! Our formulations are specifically designed to be non-comedogenic and won't clog pores. Many customers with acne-prone skin love our Luminous Brightening Serum and Gentle Silk Cleanser. We recommend patch-testing any new product first."
} }
]} ]}
faqsAnimation="slide-up" faqsAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
buttons={[ buttons={[
{ text: "Contact Support", href: "#" } { text: "Contact Support", href: "#contact" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
/> />
@@ -316,7 +323,7 @@ export default function LandingPage() {
tagIcon={Mail} tagIcon={Mail}
tagAnimation="slide-up" tagAnimation="slide-up"
title="Ready to Transform Your Skin?" title="Ready to Transform Your Skin?"
description="Join thousands of satisfied customers enjoying radiant, healthy skin. Start your skincare journey today with a 15% discount on your first order." description="Join thousands of satisfied customers enjoying radiant, healthy skin. Start your skincare journey today with a 15% discount on your first order. Have questions? Our skincare experts are here to help you find the perfect routine for your unique skin needs."
buttons={[ buttons={[
{ text: "Shop Now", href: "#products" }, { text: "Shop Now", href: "#products" },
{ text: "Subscribe & Save 15%", href: "#" } { text: "Subscribe & Save 15%", href: "#" }
@@ -336,4 +343,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }