Update src/app/page.tsx

This commit is contained in:
2026-05-30 13:58:07 +00:00
parent 16b8705e6c
commit 3a78d521ab

View File

@@ -159,17 +159,17 @@ const SERVICES_ACCORDION_ITEMS = [
const MEMBERSHIP_PLANS = [
{
id: "basic", badge: "Value", badgeIcon: Sparkles,
price: "$49/month", subtitle: "Essential Access", features: [
price: "₹999/month", subtitle: "Essential Access", features: [
"Full Gym Access", "Group Classes", "Locker Room"],
},
{
id: "pro", badge: "Most Popular", badgeIcon: Star,
price: "$79/month", subtitle: "Enhanced Experience", features: [
price: "₹1499/month", subtitle: "Enhanced Experience", features: [
"All Basic Features", "Personal Training Session (1/month)", "Nutrition Guide", "Priority Booking"],
},
{
id: "elite", badge: "Premium", badgeIcon: Award,
price: "$129/month", subtitle: "Ultimate Transformation", features: [
price: "₹2499/month", subtitle: "Ultimate Transformation", features: [
"All Pro Features", "Personal Training Sessions (4/month)", "Custom Meal Plan", "24/7 Access", "Spa Services Discount"],
},
];
@@ -434,4 +434,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}