From 7567368019875f0ff848b6e6a3554165147f5b87 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 22 Jan 2026 20:15:13 +0000 Subject: [PATCH] Update src/app/products/page.tsx --- src/app/products/page.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 5cb468d..6f860ab 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -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() { ); -} +} \ No newline at end of file