Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -27,7 +27,7 @@ export default function FitnessPage() {
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="large"
|
||||
background="noise"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
@@ -48,8 +48,8 @@ export default function FitnessPage() {
|
||||
tagIcon={Dumbbell}
|
||||
title="Register for SVS FITNESS CENTRE"
|
||||
description="Your journey to physical excellence starts here at Pateri. Unlock your potential with professional guidance and modern equipment."
|
||||
testimonials={[{ name: "John Doe", handle: "@johndoe", testimonial: "Great gym!", rating: 5 }]}
|
||||
buttons={[{ text: "Start Registration", href: "/contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="asset://hero-gym"
|
||||
imageAlt="Gym environment"
|
||||
showDimOverlay={true}
|
||||
@@ -65,6 +65,7 @@ export default function FitnessPage() {
|
||||
subdescription="Expert coaching & support"
|
||||
icon={Dumbbell}
|
||||
imageSrc="asset://gym-about"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -76,6 +77,7 @@ export default function FitnessPage() {
|
||||
title="Select Your Body Target Area"
|
||||
description="Customized training paths designed to help you reach your goals faster."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ tag: "Focus", title: "Full Body & Weight Loss", subtitle: "Complete Transformation", description: "High intensity programs for total body fat reduction.", imageSrc: "asset://full-body" },
|
||||
{ tag: "Power", title: "Muscle & Strength", subtitle: "Gain & Power", description: "Targeted isolation workouts for maximum hypertrophy.", imageSrc: "asset://muscle" },
|
||||
@@ -92,6 +94,7 @@ export default function FitnessPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{ id: "1", name: "Basic Plan", role: "₹500 / month" },
|
||||
{ id: "2", name: "Standard Plan", role: "₹800 / month" },
|
||||
@@ -108,6 +111,7 @@ export default function FitnessPage() {
|
||||
description="Common questions about SVS Fitness Centre registration."
|
||||
textboxLayout="default"
|
||||
faqsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "1", title: "Where are you located?", content: "IP NAGAR GALI NO. 5 PATERI." },
|
||||
{ id: "2", title: "Do I need an appointment?", content: "Start your registration online and visit us anytime." },
|
||||
@@ -120,11 +124,12 @@ export default function FitnessPage() {
|
||||
title="Complete Your Registration"
|
||||
description="Fill in your details below to activate your account."
|
||||
buttonText="Register"
|
||||
useInvertedBackground={false}
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Mobile Number", required: true },
|
||||
]}
|
||||
onSubmit={() => window.location.href = "/success"}
|
||||
onSubmit={(data) => console.log(data)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
|
||||
export default function RegisterPage() {
|
||||
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"
|
||||
@@ -39,6 +39,7 @@ export default function RegisterPage() {
|
||||
{ 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>
|
||||
|
||||
@@ -15,7 +15,7 @@ export default function TargetPage() {
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="large"
|
||||
background="dark"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
|
||||
Reference in New Issue
Block a user