Update src/app/page.tsx
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user