Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
@@ -8,7 +8,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import { PhoneCall } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -23,155 +23,106 @@ export default function LandingPage() {
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Membership",
|
||||
id: "/membership",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "/testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
button={{
|
||||
text: "Join Now",
|
||||
href: "/membership",
|
||||
}}
|
||||
brandName="City Club"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About Us", id: "/about"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Membership", id: "/membership"},
|
||||
{
|
||||
name: "Gallery", id: "/gallery"},
|
||||
{
|
||||
name: "Testimonials", id: "/testimonials"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
button={{
|
||||
text: "Join Now", href: "/membership"}}
|
||||
brandName="City Club"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-main" data-section="contact-main">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Contact Us"
|
||||
title="Get in Touch with City Club"
|
||||
description="We'd love to hear from you! Whether you have questions about memberships, classes, or personal training, our team is here to help. Reach out and start your fitness journey today."
|
||||
tagIcon={PhoneCall}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/girl-gym_1157-4997.jpg"
|
||||
imageAlt="Modern gym reception area"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Your Name"
|
||||
buttonText="Send Message"
|
||||
termsText="By submitting, you agree to our Privacy Policy and Terms of Service."
|
||||
/>
|
||||
</div>
|
||||
<div id="contact-main" data-section="contact-main">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
tag="Contact Us"
|
||||
title="Get in Touch with City Club"
|
||||
description="We'd love to hear from you! Whether you have questions about memberships, classes, or personal training, our team is here to help. Reach out and start your fitness journey today."
|
||||
tagIcon={PhoneCall}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/girl-gym_1157-4997.jpg"
|
||||
imageAlt="Modern gym reception area"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Your Name"
|
||||
buttonText="Send Message"
|
||||
termsText="By submitting, you agree to our Privacy Policy and Terms of Service."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-local-info" data-section="contact-local-info">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Visit Us in Kishangarh"
|
||||
buttons={[
|
||||
{
|
||||
text: "Open in Google Maps",
|
||||
href: "https://maps.app.goo.gl/HsBNJzujwy7kFqf78",
|
||||
},
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:+919828663579",
|
||||
},
|
||||
]}
|
||||
description="Find City Club at HVJ6+PFR, RJ SH 7E, R K Colony, Vivek Vihar Colony, Kishangarh, Rajasthan 305801, India. Call us at +91 98286 63579 or simply drop by during our operating hours. We're here to welcome you!"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact-local-info" data-section="contact-local-info">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Visit Us in Kishangarh"
|
||||
buttons={[
|
||||
{
|
||||
text: "Open in Google Maps", href: "https://maps.app.goo.gl/HsBNJzujwy7kFqf78"},
|
||||
{
|
||||
text: "Call Now", href: "tel:+919828663579"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="City Club"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Membership",
|
||||
href: "/membership",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/services#faq",
|
||||
},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Twitter",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Google Maps",
|
||||
href: "https://maps.app.goo.gl/HsBNJzujwy7kFqf78",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 City Club. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="City Club"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "Membership", href: "/membership"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQ", href: "/services#faq"},
|
||||
{
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Facebook", href: "#"},
|
||||
{
|
||||
label: "Instagram", href: "#"},
|
||||
{
|
||||
label: "Twitter", href: "#"},
|
||||
{
|
||||
label: "Google Maps", href: "https://maps.app.goo.gl/HsBNJzujwy7kFqf78"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 City Club. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -7,7 +7,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function TestimonialsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -22,202 +22,106 @@ export default function LandingPage() {
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Membership",
|
||||
id: "/membership",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "/testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
button={{
|
||||
text: "Join Now",
|
||||
href: "/membership",
|
||||
}}
|
||||
brandName="City Club"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About Us", id: "/about"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Membership", id: "/membership"},
|
||||
{
|
||||
name: "Gallery", id: "/gallery"},
|
||||
{
|
||||
name: "Testimonials", id: "/testimonials"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
button={{
|
||||
text: "Join Now", href: "/membership"}}
|
||||
brandName="City Club"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials-full" data-section="testimonials-full">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Anjali Sharma",
|
||||
date: "April 2024",
|
||||
title: "Achieved My Fitness Goals!",
|
||||
quote: "City Club has truly transformed my life. The trainers are incredibly supportive, and the facilities are top-notch. I've achieved fitness goals I never thought possible!",
|
||||
tag: "Weight Loss",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/pilates-instructor-gym_1303-23279.jpg",
|
||||
avatarAlt: "Anjali Sharma avatar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-pregnant-woman-home-exercising-yoga-with-laptop_23-2148761223.jpg",
|
||||
imageAlt: "Anjali Sharma working out",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Rahul Verma",
|
||||
date: "March 2024",
|
||||
title: "Best Gym in Kishangarh",
|
||||
quote: "I've tried many gyms, but City Club stands out. The equipment is always clean, and the environment is highly motivating. Highly recommend for serious fitness enthusiasts.",
|
||||
tag: "Muscle Gain",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-people-getting-stronger-together_23-2149125957.jpg",
|
||||
avatarAlt: "Rahul Verma avatar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-bicycle_23-2148625812.jpg",
|
||||
imageAlt: "Rahul Verma running on treadmill",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Priya Singh",
|
||||
date: "Feb 2024",
|
||||
title: "A Welcoming Community",
|
||||
quote: "More than just a gym, City Club feels like a family. Everyone is so friendly and supportive. It’s a joy to come here and work towards my health goals.",
|
||||
tag: "Overall Health",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-smiling-model-dressed-summer-clothes-trendy-girl-posing-street-funny-positive-woman-having-fun_158538-6296.jpg",
|
||||
avatarAlt: "Priya Singh avatar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-doing-fitness-outdoors-together_23-2149011864.jpg",
|
||||
imageAlt: "Priya Singh in a group class",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Arjun Mehta",
|
||||
date: "Jan 2024",
|
||||
title: "Excellent Personal Training",
|
||||
quote: "The personal training sessions here are fantastic. My trainer created a tailored plan that helped me break through plateaus and achieve new personal bests.",
|
||||
tag: "Strength Boost",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-athletic-man-black-background_613910-9870.jpg",
|
||||
avatarAlt: "Arjun Mehta avatar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/workout-plan-template-with-modern-style_23-2147913671.jpg",
|
||||
imageAlt: "Arjun Mehta with trainer",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Kavita Rao",
|
||||
date: "Dec 2023",
|
||||
title: "Motivating and Clean Environment",
|
||||
quote: "City Club maintains a very clean and hygienic facility, which is important to me. The motivating atmosphere makes every workout enjoyable and productive.",
|
||||
tag: "Daily Fitness",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-fitness-woman_329181-1295.jpg",
|
||||
avatarAlt: "Kavita Rao avatar",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-lifting-legs-exercise-machine_23-2147688157.jpg",
|
||||
imageAlt: "Kavita Rao smiling in gym",
|
||||
},
|
||||
]}
|
||||
title="What Our Members Say"
|
||||
description="Real stories from real people who achieved their fitness goals and transformed their lives at City Club."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials-full" data-section="testimonials-full">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Anjali Sharma", date: "April 2024", title: "Achieved My Fitness Goals!", quote: "City Club has truly transformed my life. The trainers are incredibly supportive, and the facilities are top-notch. I've achieved fitness goals I never thought possible!", tag: "Weight Loss", avatarSrc: "http://img.b2bpic.net/free-photo/pilates-instructor-gym_1303-23279.jpg", avatarAlt: "Anjali Sharma avatar", imageSrc: "http://img.b2bpic.net/free-photo/smiley-pregnant-woman-home-exercising-yoga-with-laptop_23-2148761223.jpg", imageAlt: "Anjali Sharma working out"},
|
||||
{
|
||||
id: "2", name: "Rahul Verma", date: "March 2024", title: "Best Gym in Kishangarh", quote: "I've tried many gyms, but City Club stands out. The equipment is always clean, and the environment is highly motivating. Highly recommend for serious fitness enthusiasts.", tag: "Muscle Gain", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-people-getting-stronger-together_23-2149125957.jpg", avatarAlt: "Rahul Verma avatar", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-bicycle_23-2148625812.jpg", imageAlt: "Rahul Verma running on treadmill"},
|
||||
{
|
||||
id: "3", name: "Priya Singh", date: "Feb 2024", title: "A Welcoming Community", quote: "More than just a gym, City Club feels like a family. Everyone is so friendly and supportive. It’s a joy to come here and work towards my health goals.", tag: "Overall Health", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-smiling-model-dressed-summer-clothes-trendy-girl-posing-street-funny-positive-woman-having-fun_158538-6296.jpg", avatarAlt: "Priya Singh avatar", imageSrc: "http://img.b2bpic.net/free-photo/women-doing-fitness-outdoors-together_23-2149011864.jpg", imageAlt: "Priya Singh in a group class"},
|
||||
{
|
||||
id: "4", name: "Arjun Mehta", date: "Jan 2024", title: "Excellent Personal Training", quote: "The personal training sessions here are fantastic. My trainer created a tailored plan that helped me break through plateaus and achieve new personal bests.", tag: "Strength Boost", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-athletic-man-black-background_613910-9870.jpg", avatarAlt: "Arjun Mehta avatar", imageSrc: "http://img.b2bpic.net/free-photo/workout-plan-template-with-modern-style_23-2147913671.jpg", imageAlt: "Arjun Mehta with trainer"},
|
||||
{
|
||||
id: "5", name: "Kavita Rao", date: "Dec 2023", title: "Motivating and Clean Environment", quote: "City Club maintains a very clean and hygienic facility, which is important to me. The motivating atmosphere makes every workout enjoyable and productive.", tag: "Daily Fitness", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-fitness-woman_329181-1295.jpg", avatarAlt: "Kavita Rao avatar", imageSrc: "http://img.b2bpic.net/free-photo/woman-lifting-legs-exercise-machine_23-2147688157.jpg", imageAlt: "Kavita Rao smiling in gym"}
|
||||
]}
|
||||
title="What Our Members Say"
|
||||
description="Real stories from real people who achieved their fitness goals and transformed their lives at City Club."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials-join-cta" data-section="testimonials-join-cta">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Ready to Start Your Own Success Story?"
|
||||
buttons={[
|
||||
{
|
||||
text: "Become a Member",
|
||||
href: "/membership",
|
||||
},
|
||||
]}
|
||||
description="Join the City Club family and experience the difference dedicated support and a premium fitness environment can make in your life. We are committed to helping you write your next chapter of health and wellness."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials-join-cta" data-section="testimonials-join-cta">
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Ready to Start Your Own Success Story?"
|
||||
buttons={[
|
||||
{
|
||||
text: "Become a Member", href: "/membership"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="City Club"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Membership",
|
||||
href: "/membership",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/services#faq",
|
||||
},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Twitter",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Google Maps",
|
||||
href: "https://maps.app.goo.gl/HsBNJzujwy7kFqf78",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 City Club. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="City Club"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "Membership", href: "/membership"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQ", href: "/services#faq"},
|
||||
{
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Facebook", href: "#"},
|
||||
{
|
||||
label: "Instagram", href: "#"},
|
||||
{
|
||||
label: "Twitter", href: "#"},
|
||||
{
|
||||
label: "Google Maps", href: "https://maps.app.goo.gl/HsBNJzujwy7kFqf78"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 City Club. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user