Merge version_4 into main #4

Open
development wants to merge 14 commits from version_4 into main
Showing only changes of commit d8f4823be6 - Show all commits

View File

@@ -109,21 +109,24 @@ export default function ProductsPage() {
plans={[
{
id: "1", badge: "Starter", badgeIcon: Star,
price: "$49", subtitle: "Essential skincare basics", buttons: [{ text: "Get Started", href: "/signup" }],
price: 49,
subtitle: "Essential skincare basics", buttons: [{ text: "Get Started", href: "/signup" }],
features: [
"Gentle Cleansing Oil", "Hydrating Serum", "Basic moisturizer", "Access to skincare tips"
]
},
{
id: "2", badge: "Most Popular", badgeIcon: Heart,
price: "$129", subtitle: "Complete daily routine", buttons: [{ text: "Get Started", href: "/signup" }],
price: 129,
subtitle: "Complete daily routine", buttons: [{ text: "Get Started", href: "/signup" }],
features: [
"All Starter products", "Premium face cream", "Weekly face mask", "Email skincare support", "15% member discount"
]
},
{
id: "3", badge: "Luxury", badgeIcon: Crown,
price: "$249", subtitle: "Full professional regimen", buttons: [{ text: "Get Started", href: "/signup" }],
price: 249,
subtitle: "Full professional regimen", buttons: [{ text: "Get Started", href: "/signup" }],
features: [
"All Premium products", "Exclusive serums & treatments", "Monthly deliveries", "Priority VIP support", "Free consultations", "25% member discount"
]
@@ -135,4 +138,4 @@ export default function ProductsPage() {
<FooterLogoReveal logoText="LuxeGlow" />
</ThemeProvider>
);
}
}