Update src/app/membership-plans/page.tsx

This commit is contained in:
2026-04-09 10:01:18 +00:00
parent 8edbad2524
commit 39390941d9

View File

@@ -7,7 +7,7 @@ import FooterSimple from "@/components/sections/footer/FooterSimple";
export default function MembershipPlansPage() {
return (
<ThemeProvider borderRadius="soft" contentWidth="mediumLarge" background="dark">
<ThemeProvider borderRadius="soft" contentWidth="mediumLarge" background="none">
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
brandName="SVS FITNESS"
@@ -25,6 +25,7 @@ export default function MembershipPlansPage() {
description="Flexible options to suit your fitness journey."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
plans={[
{ id: "basic", name: "Basic Plan", price: "₹500", features: ["Access to gym equipment", "Basic workout guidance"], buttons: [{ text: "Select Plan", href: "/register" }] },
{ id: "standard", name: "Standard Plan", price: "₹800", features: ["Everything in Basic", "Personalized routine", "Diet consultation"], buttons: [{ text: "Select Plan", href: "/register" }] },
@@ -39,6 +40,7 @@ export default function MembershipPlansPage() {
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Plans", href: "/membership-plans" }, { label: "Register", href: "/register" }] },
]}
bottomLeftText="© 2025 SVS Fitness Centre"
bottomRightText="All Rights Reserved"
/>
</div>
</ThemeProvider>