Update src/app/products/page.tsx

This commit is contained in:
2026-01-22 20:15:13 +00:00
parent a497d17e07
commit 7567368019

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>
);
}
}