Update src/app/membership/page.tsx
This commit is contained in:
@@ -34,9 +34,7 @@ export default function MembershipPage() {
|
||||
]}
|
||||
brandName="Classic Gym"
|
||||
button={{
|
||||
text: "Join Now",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Join Now", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -47,13 +45,9 @@ export default function MembershipPage() {
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Plans",
|
||||
href: "#pricing",
|
||||
},
|
||||
text: "View Plans", href: "#pricing"},
|
||||
{
|
||||
text: "Get Started",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Get Started", href: "#contact"},
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-psd/flat-design-body-building-invoice-template_23-2150021309.jpg"
|
||||
@@ -61,7 +55,6 @@ export default function MembershipPage() {
|
||||
frameStyle="card"
|
||||
mediaAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -76,60 +69,25 @@ export default function MembershipPage() {
|
||||
animationType="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
title: "Basic Monthly",
|
||||
price: "₹2,999",
|
||||
period: "/month",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-guy-gym-is-training-treadmill-healthy-lifestyle_78826-2815.jpg?_wi=4",
|
||||
button: {
|
||||
text: "Get Membership",
|
||||
href: "#contact",
|
||||
},
|
||||
id: "basic", title: "Basic Monthly", price: "₹2,999", period: "/month", imageSrc: "http://img.b2bpic.net/free-photo/stylish-guy-gym-is-training-treadmill-healthy-lifestyle_78826-2815.jpg", button: {
|
||||
text: "Get Membership", href: "#contact"},
|
||||
features: [
|
||||
"Gym access 6 AM - 10 PM",
|
||||
"All equipment access",
|
||||
"Locker facility",
|
||||
"Water cooler access",
|
||||
],
|
||||
"Gym access 6 AM - 10 PM", "All equipment access", "Locker facility", "Water cooler access"],
|
||||
},
|
||||
{
|
||||
id: "standard",
|
||||
title: "Standard Quarterly",
|
||||
price: "₹7,999",
|
||||
period: "/3 months",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/barbell-weights-rack_23-2147789571.jpg?_wi=3",
|
||||
button: {
|
||||
text: "Get Membership",
|
||||
href: "#contact",
|
||||
},
|
||||
id: "standard", title: "Standard Quarterly", price: "₹7,999", period: "/3 months", imageSrc: "http://img.b2bpic.net/free-photo/barbell-weights-rack_23-2147789571.jpg", button: {
|
||||
text: "Get Membership", href: "#contact"},
|
||||
features: [
|
||||
"Everything in Basic",
|
||||
"1 Free Fitness Assessment",
|
||||
"Trainer guidance - 2 sessions",
|
||||
"Member newsletter",
|
||||
],
|
||||
"Everything in Basic", "1 Free Fitness Assessment", "Trainer guidance - 2 sessions", "Member newsletter"],
|
||||
},
|
||||
{
|
||||
id: "premium",
|
||||
title: "Premium Annual",
|
||||
price: "₹29,999",
|
||||
period: "/year",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-training-gym-with-supervisor_23-2150772203.jpg?_wi=2",
|
||||
button: {
|
||||
text: "Get Membership",
|
||||
href: "#contact",
|
||||
},
|
||||
id: "premium", title: "Premium Annual", price: "₹29,999", period: "/year", imageSrc: "http://img.b2bpic.net/free-photo/person-training-gym-with-supervisor_23-2150772203.jpg", button: {
|
||||
text: "Get Membership", href: "#contact"},
|
||||
features: [
|
||||
"Everything in Standard",
|
||||
"Personalized training plan",
|
||||
"4 Personal training sessions",
|
||||
"Nutrition guidance included",
|
||||
"Free merchandise + T-shirt",
|
||||
"Priority class booking",
|
||||
],
|
||||
"Everything in Standard", "Personalized training plan", "4 Personal training sessions", "Nutrition guidance included", "Free merchandise + T-shirt", "Priority class booking"],
|
||||
},
|
||||
]}
|
||||
tagAnimation="entrance-slide"
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -139,38 +97,24 @@ export default function MembershipPage() {
|
||||
description="Join 348+ members who have already started their fitness journey with Classic Gym. Connect with us today to claim your free trial or get membership details."
|
||||
inputs={[
|
||||
{
|
||||
name: "fullname",
|
||||
type: "text",
|
||||
placeholder: "Your Full Name",
|
||||
required: true,
|
||||
name: "fullname", type: "text", placeholder: "Your Full Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Phone Number",
|
||||
required: true,
|
||||
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
|
||||
},
|
||||
{
|
||||
name: "fitnessgoal",
|
||||
type: "text",
|
||||
placeholder: "Your Fitness Goal (e.g., Weight Loss, Strength Building)",
|
||||
required: true,
|
||||
name: "fitnessgoal", type: "text", placeholder: "Your Fitness Goal (e.g., Weight Loss, Strength Building)", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email Address",
|
||||
required: false,
|
||||
name: "email", type: "email", placeholder: "Email Address", required: false,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Tell us more about your fitness journey or ask any questions...",
|
||||
rows: 5,
|
||||
name: "message", placeholder: "Tell us more about your fitness journey or ask any questions...", rows: 5,
|
||||
required: false,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/train-reach-sport-landing-page-with-photo_23-2148303577.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/train-reach-sport-landing-page-with-photo_23-2148303577.jpg"
|
||||
imageAlt="Classic Gym Location - Khammam"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -185,81 +129,49 @@ export default function MembershipPage() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Location",
|
||||
href: "#",
|
||||
},
|
||||
label: "Location", href: "#"},
|
||||
{
|
||||
label: "Hours",
|
||||
href: "#",
|
||||
},
|
||||
label: "Hours", href: "#"},
|
||||
{
|
||||
label: "Phone",
|
||||
href: "tel:+919876543210",
|
||||
},
|
||||
label: "Phone", href: "tel:+919876543210"},
|
||||
{
|
||||
label: "Email",
|
||||
href: "mailto:info@classicgym.com",
|
||||
},
|
||||
label: "Email", href: "mailto:info@classicgym.com"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Membership",
|
||||
href: "/membership",
|
||||
},
|
||||
label: "Membership", href: "/membership"},
|
||||
{
|
||||
label: "Programs",
|
||||
href: "/#programs",
|
||||
},
|
||||
label: "Programs", href: "/#programs"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "https://facebook.com/classicgym",
|
||||
},
|
||||
label: "Facebook", href: "https://facebook.com/classicgym"},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://instagram.com/classicgym",
|
||||
},
|
||||
label: "Instagram", href: "https://instagram.com/classicgym"},
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "https://wa.me/919876543210",
|
||||
},
|
||||
label: "WhatsApp", href: "https://wa.me/919876543210"},
|
||||
{
|
||||
label: "Google Reviews",
|
||||
href: "https://google.com/maps",
|
||||
},
|
||||
label: "Google Reviews", href: "https://google.com/maps"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms & Conditions",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms & Conditions", href: "#"},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact Us", href: "#contact"},
|
||||
{
|
||||
label: "Free Trial",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Free Trial", href: "#contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user