diff --git a/src/app/membership-plans/page.tsx b/src/app/membership-plans/page.tsx new file mode 100644 index 0000000..d8af591 --- /dev/null +++ b/src/app/membership-plans/page.tsx @@ -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 ( + + +
+ +
+ +
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 0254767..e4fe3f6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,15 +6,20 @@ import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/Nav import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial"; import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen"; -import TeamCardSix from "@/components/sections/team/TeamCardSix"; import TeamCardOne from "@/components/sections/team/TeamCardOne"; -import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; import FaqDouble from "@/components/sections/faq/FaqDouble"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Dumbbell, Info, Users, CheckCircle, HelpCircle, Mail } from "lucide-react"; +import { Dumbbell, Info, CheckCircle, HelpCircle } from "lucide-react"; export default function FitnessPage() { + const navLinks = [ + { name: "Target", id: "services" }, + { name: "Plans", id: "team" }, + { name: "FAQ", id: "faq" }, + { name: "Register", id: "contact" }, + ]; + return ( @@ -48,18 +48,11 @@ 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." - buttons={[ - { text: "Start Registration", href: "#contact" }, - ]} + buttons={[{ text: "Start Registration", href: "/contact" }]} buttonAnimation="slide-up" imageSrc="asset://hero-gym" - imageAlt="Gym environment with equipment" + imageAlt="Gym environment" showDimOverlay={true} - textPosition="bottom" - testimonials={[ - { name: "Rahul V.", handle: "Athlete", testimonial: "The environment at SVS Fitness is unmatched. Perfect for real results.", rating: 5 }, - { name: "Anita S.", handle: "Fitness Enthusiast", testimonial: "Clean, modern, and motivating. Best gym in the area!", rating: 5 }, - ]} /> @@ -67,14 +60,12 @@ export default function FitnessPage() { @@ -85,12 +76,10 @@ 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 and conditioning.", imageSrc: "asset://full-body" }, - { tag: "Power", title: "Muscle & Strength", subtitle: "Gain & Power", description: "Targeted isolation workouts for maximum hypertrophy and arm strength.", imageSrc: "asset://muscle" }, - { tag: "Aesthetics", title: "Chest & Core", subtitle: "Advanced Toning", description: "Sculpt your six-pack and build a powerful chest with expert form.", imageSrc: "asset://chest" }, - { tag: "Health", title: "General Fitness", subtitle: "Wellness", description: "Stay active, healthy, and energized with our daily wellness routines.", imageSrc: "asset://general" }, + { 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" }, + { tag: "Aesthetics", title: "Chest & Core", subtitle: "Advanced Toning", description: "Sculpt your six-pack and build a powerful chest.", imageSrc: "asset://chest" }, ]} /> @@ -116,12 +105,12 @@ export default function FitnessPage() { tag="Support" tagIcon={HelpCircle} title="Need Information?" - description="Common questions about SVS Fitness Centre registration and facilities." + description="Common questions about SVS Fitness Centre registration." textboxLayout="default" faqsAnimation="slide-up" faqs={[ - { id: "1", title: "Where are you located?", content: "We are located at IP NAGAR GALI NO. 5 PATERI. Visit us during operating hours!" }, - { id: "2", title: "Do I need an appointment?", content: "No, you can start your registration via this portal and visit the center anytime." }, + { 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." }, ]} /> @@ -129,31 +118,27 @@ export default function FitnessPage() {
window.location.href = "/success"} />
); -} \ No newline at end of file +} diff --git a/src/app/register/page.tsx b/src/app/register/page.tsx new file mode 100644 index 0000000..b48b7f6 --- /dev/null +++ b/src/app/register/page.tsx @@ -0,0 +1,46 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function RegisterPage() { + return ( + + +
+ +
+ +
+ ); +} diff --git a/src/app/target/page.tsx b/src/app/target/page.tsx new file mode 100644 index 0000000..bc64788 --- /dev/null +++ b/src/app/target/page.tsx @@ -0,0 +1,69 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { CheckCircle } from "lucide-react"; + +export default function TargetPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file