Add src/app/membership-plans/page.tsx
This commit is contained in:
46
src/app/membership-plans/page.tsx
Normal file
46
src/app/membership-plans/page.tsx
Normal file
@@ -0,0 +1,46 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
|
||||
export default function MembershipPlansPage() {
|
||||
return (
|
||||
<ThemeProvider borderRadius="soft" contentWidth="mediumLarge" background="dark">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="SVS FITNESS"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Plans", id: "/membership-plans" },
|
||||
{ name: "Register", id: "/register" },
|
||||
]}
|
||||
button={{ text: "Register", href: "/register" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="pricing" data-section="pricing" className="pt-24">
|
||||
<PricingCardThree
|
||||
title="Our Membership Plans"
|
||||
description="Flexible options to suit your fitness journey."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
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" }] },
|
||||
{ id: "premium", name: "Premium Plan", price: "₹1200", features: ["Everything in Standard", "1-on-1 coaching", "Extended access"], buttons: [{ text: "Select Plan", href: "/register" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "SVS FITNESS", items: [{ label: "IP NAGAR GALI NO. 5 PATERI" }] },
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Plans", href: "/membership-plans" }, { label: "Register", href: "/register" }] },
|
||||
]}
|
||||
bottomLeftText="© 2025 SVS Fitness Centre"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user