Merge version_6 into main

Merge version_6 into main
This commit was merged in pull request #7.
This commit is contained in:
2026-01-22 20:52:52 +00:00

View File

@@ -93,7 +93,7 @@ export default function ProductsPage() {
</div> </div>
<div id="pricing" data-section="pricing"> <div id="pricing" data-section="pricing">
<PricingCardOne <PricingCardTwo
title="Choose Your Skincare Journey" title="Choose Your Skincare Journey"
description="Select the perfect plan to achieve your best skin" description="Select the perfect plan to achieve your best skin"
tag="Pricing Plans" tag="Pricing Plans"
@@ -104,19 +104,31 @@ export default function ProductsPage() {
plans={[ plans={[
{ {
id: "1", badge: "Starter", badgeIcon: Star, id: "1", badge: "Starter", badgeIcon: Star,
price: "$49", subtitle: "Essential skincare basics", features: [ price: "$49", subtitle: "Essential skincare basics", buttons: [
{ text: "Get Started", href: "/products" },
{ text: "Learn More", href: "/pricing" }
],
features: [
"Gentle Cleansing Oil", "Hydrating Serum", "Basic moisturizer", "Access to skincare tips" "Gentle Cleansing Oil", "Hydrating Serum", "Basic moisturizer", "Access to skincare tips"
] ]
}, },
{ {
id: "2", badge: "Most Popular", badgeIcon: Heart, id: "2", badge: "Most Popular", badgeIcon: Heart,
price: "$129", subtitle: "Complete daily routine", features: [ price: "$129", subtitle: "Complete daily routine", buttons: [
{ text: "Get Started", href: "/products" },
{ text: "Contact Sales", href: "/contact" }
],
features: [
"All Starter products", "Premium face cream", "Weekly face mask", "Email skincare support", "15% member discount" "All Starter products", "Premium face cream", "Weekly face mask", "Email skincare support", "15% member discount"
] ]
}, },
{ {
id: "3", badge: "Luxury", badgeIcon: Crown, id: "3", badge: "Luxury", badgeIcon: Crown,
price: "$249", subtitle: "Full professional regimen", features: [ price: "$249", subtitle: "Full professional regimen", buttons: [
{ text: "Get Started", href: "/products" },
{ text: "Contact Sales", href: "/contact" }
],
features: [
"All Premium products", "Exclusive serums & treatments", "Monthly deliveries", "Priority VIP support", "Free consultations", "25% member discount" "All Premium products", "Exclusive serums & treatments", "Monthly deliveries", "Priority VIP support", "Free consultations", "25% member discount"
] ]
} }
@@ -127,4 +139,4 @@ export default function ProductsPage() {
<FooterLogoReveal logoText="LuxeGlow" /> <FooterLogoReveal logoText="LuxeGlow" />
</ThemeProvider> </ThemeProvider>
); );
} }