Merge version_1 into main #2
@@ -1,11 +1,11 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import Link from "next/link";
|
||||
import { Award, Heart, Users, Star, Zap, Clock, Sparkles } from "lucide-react";
|
||||
|
||||
@@ -60,7 +60,7 @@ export default function AboutPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="blurBottom"
|
||||
background="circleGradient"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
@@ -86,7 +86,7 @@ export default function AboutPage() {
|
||||
description="Founded with Passion for Wellness"
|
||||
subdescription="Established 2023 | 500+ Transformed Members | Certified Trainers"
|
||||
icon={Heart}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sport-fitness-health-exercise-bikes-fitness-center_613910-20283.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sport-fitness-health-exercise-bikes-fitness-center_613910-20283.jpg"
|
||||
imageAlt="Ignite Fitness Club gym facility"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -103,28 +103,19 @@ export default function AboutPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Quality Equipment",
|
||||
description:
|
||||
"We invest in the latest, state-of-the-art fitness equipment to ensure our members have access to world-class training tools.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/still-life-gym-equipment_23-2148197736.jpg?_wi=2",
|
||||
},
|
||||
title: "Quality Equipment", description:
|
||||
"We invest in the latest, state-of-the-art fitness equipment to ensure our members have access to world-class training tools.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/still-life-gym-equipment_23-2148197736.jpg"},
|
||||
{
|
||||
id: 2,
|
||||
title: "Expert Trainers",
|
||||
description:
|
||||
"Our certified fitness professionals bring years of experience and genuine passion for helping you achieve your goals.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-sports-people-training-morning-gym_1157-32133.jpg?_wi=2",
|
||||
},
|
||||
title: "Expert Trainers", description:
|
||||
"Our certified fitness professionals bring years of experience and genuine passion for helping you achieve your goals.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-sports-people-training-morning-gym_1157-32133.jpg"},
|
||||
{
|
||||
id: 3,
|
||||
title: "Community Spirit",
|
||||
description:
|
||||
"We foster an inclusive, energetic environment where members motivate each other and celebrate collective success.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-woman-gym-fitnes_624325-2383.jpg?_wi=2",
|
||||
},
|
||||
title: "Community Spirit", description:
|
||||
"We foster an inclusive, energetic environment where members motivate each other and celebrate collective success.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-woman-gym-fitnes_624325-2383.jpg"},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="blur-reveal"
|
||||
@@ -141,32 +132,16 @@ export default function AboutPage() {
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "500",
|
||||
title: "Active Members",
|
||||
description: "Growing community in Dharavi",
|
||||
icon: Users,
|
||||
id: "1", value: "500", title: "Active Members", description: "Growing community in Dharavi", icon: Users,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "26",
|
||||
title: "5-Star Reviews",
|
||||
description: "Member satisfaction verified",
|
||||
icon: Star,
|
||||
id: "2", value: "26", title: "5-Star Reviews", description: "Member satisfaction verified", icon: Star,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "100%",
|
||||
title: "Equipment Upgrade",
|
||||
description: "Latest technology yearly",
|
||||
icon: Zap,
|
||||
id: "3", value: "100%", title: "Equipment Upgrade", description: "Latest technology yearly", icon: Zap,
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "12",
|
||||
title: "Hours Open",
|
||||
description: "Early to late accessibility",
|
||||
icon: Clock,
|
||||
id: "4", value: "12", title: "Hours Open", description: "Early to late accessibility", icon: Clock,
|
||||
},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import Link from "next/link";
|
||||
import { Sparkles, Zap } from "lucide-react";
|
||||
|
||||
@@ -58,7 +58,7 @@ export default function ContactPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="blurBottom"
|
||||
background="circleGradient"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
|
||||
@@ -6,45 +6,29 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Ignite Fitness Club - Premium Gym in Dharavi, Mumbai 400017",
|
||||
description: "Premium gym in Dharavi, Mumbai with 5.0 rating, new equipment, expert trainers, and open till 12 AM. Book your free trial today.",
|
||||
keywords: "gym in Dharavi, best gym 400017, fitness club Mumbai, personal training, premium gym near Sion",
|
||||
metadataBase: new URL("https://ignitefitnesclub.com"),
|
||||
title: "Ignite Fitness Club - Premium Gym in Dharavi, Mumbai 400017", description: "Premium gym in Dharavi, Mumbai with 5.0 rating, new equipment, expert trainers, and open till 12 AM. Book your free trial today.", keywords: "gym in Dharavi, best gym 400017, fitness club Mumbai, personal training, premium gym near Sion", metadataBase: new URL("https://ignitefitnesclub.com"),
|
||||
alternates: {
|
||||
canonical: "https://ignitefitnesclub.com",
|
||||
},
|
||||
canonical: "https://ignitefitnesclub.com"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Ignite Fitness Club - Premium Gym Experience in Dharavi",
|
||||
description: "Transform your fitness journey with premium equipment, expert trainers, and a quality community. 5.0 rated gym in Mumbai.",
|
||||
url: "https://ignitefitnesclub.com",
|
||||
siteName: "Ignite Fitness Club",
|
||||
type: "website",
|
||||
images: [
|
||||
title: "Ignite Fitness Club - Premium Gym Experience in Dharavi", description: "Transform your fitness journey with premium equipment, expert trainers, and a quality community. 5.0 rated gym in Mumbai.", url: "https://ignitefitnesclub.com", siteName: "Ignite Fitness Club", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/sport-fitness-health-exercise-bikes-fitness-center_613910-20283.jpg",
|
||||
alt: "Ignite Fitness Club Premium Gym",
|
||||
},
|
||||
url: "http://img.b2bpic.net/free-photo/sport-fitness-health-exercise-bikes-fitness-center_613910-20283.jpg", alt: "Ignite Fitness Club Premium Gym"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Premium Gym in Dharavi, Mumbai | Ignite Fitness Club",
|
||||
description: "5.0 rated premium gym with new equipment, expert trainers. Book free trial now.",
|
||||
images: ["http://img.b2bpic.net/free-photo/sport-fitness-health-exercise-bikes-fitness-center_613910-20283.jpg"],
|
||||
card: "summary_large_image", title: "Premium Gym in Dharavi, Mumbai | Ignite Fitness Club", description: "5.0 rated premium gym with new equipment, expert trainers. Book free trial now.", images: ["http://img.b2bpic.net/free-photo/sport-fitness-health-exercise-bikes-fitness-center_613910-20283.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import Link from "next/link";
|
||||
import { Zap, Sparkles, Zap as ZapIcon } from "lucide-react";
|
||||
import { Zap, Sparkles } from "lucide-react";
|
||||
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
@@ -59,7 +59,7 @@ export default function MembershipPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="blurBottom"
|
||||
background="circleGradient"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
@@ -97,36 +97,20 @@ export default function MembershipPage() {
|
||||
title="Our Membership Plans"
|
||||
description="Select the plan that aligns with your fitness goals and schedule"
|
||||
tag="Pricing Options"
|
||||
tagIcon={ZapIcon}
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "₹999",
|
||||
title: "Monthly",
|
||||
description: "Unlimited access, flexible commitment",
|
||||
icon: Zap,
|
||||
id: "1", value: "₹999", title: "Monthly", description: "Unlimited access, flexible commitment", icon: Zap,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "₹4999",
|
||||
title: "6-Month",
|
||||
description: "Save 15% with semi-annual plan",
|
||||
icon: Sparkles,
|
||||
id: "2", value: "₹4999", title: "6-Month", description: "Save 15% with semi-annual plan", icon: Sparkles,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "₹8999",
|
||||
title: "Annual",
|
||||
description: "Best value - Save 25% yearly",
|
||||
icon: ZapIcon,
|
||||
id: "3", value: "₹8999", title: "Annual", description: "Best value - Save 25% yearly", icon: Zap,
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "💰",
|
||||
title: "Premium",
|
||||
description: "Personal training included",
|
||||
icon: Zap,
|
||||
id: "4", value: "💰", title: "Premium", description: "Personal training included", icon: Zap,
|
||||
},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
|
||||
195
src/app/page.tsx
195
src/app/page.tsx
@@ -1,13 +1,13 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import Link from "next/link";
|
||||
import { Sparkles, Shield, Zap, Users, Star, Clock, Heart, Award } from "lucide-react";
|
||||
|
||||
@@ -62,7 +62,7 @@ export default function HomePage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="blurBottom"
|
||||
background="circleGradient"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
@@ -83,7 +83,7 @@ export default function HomePage() {
|
||||
<HeroBillboard
|
||||
title="Dharavi's Premium Gym Experience"
|
||||
description="New Equipment. Expert Trainers. Real Transformations. Join 500+ members who've transformed their fitness journey at Ignite Fitness Club."
|
||||
background={{ variant: "blurBottom" }}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="⭐ 5.0 Rating | 26+ Reviews"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
@@ -92,22 +92,16 @@ export default function HomePage() {
|
||||
{ text: "📞 Call Now", href: "tel:+919876543210" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sport-fitness-health-exercise-bikes-fitness-center_613910-20283.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sport-fitness-health-exercise-bikes-fitness-center_613910-20283.jpg"
|
||||
imageAlt="Ignite Fitness Club premium gym interior with modern equipment"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-adult-doing-indoor-sport-gym_23-2149205542.jpg",
|
||||
alt: "Certified trainer",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-adult-doing-indoor-sport-gym_23-2149205542.jpg", alt: "Certified trainer"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-gym_23-2149049763.jpg",
|
||||
alt: "Happy member",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-gym_23-2149049763.jpg", alt: "Happy member"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/afro-american-sportsman-getting-ready-training_342744-655.jpg",
|
||||
alt: "Transformed member",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/afro-american-sportsman-getting-ready-training_342744-655.jpg", alt: "Transformed member"},
|
||||
]}
|
||||
avatarText="Trusted by 500+ fitness enthusiasts in Dharavi"
|
||||
/>
|
||||
@@ -122,32 +116,16 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "500",
|
||||
title: "Active Members",
|
||||
description: "Growing fitness community in Dharavi",
|
||||
icon: Users,
|
||||
id: "1", value: "500", title: "Active Members", description: "Growing fitness community in Dharavi", icon: Users,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "26",
|
||||
title: "5-Star Reviews",
|
||||
description: "Premium gym experience verified",
|
||||
icon: Star,
|
||||
id: "2", value: "26", title: "5-Star Reviews", description: "Premium gym experience verified", icon: Star,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "100%",
|
||||
title: "New Equipment",
|
||||
description: "Latest fitness technology available",
|
||||
icon: Zap,
|
||||
id: "3", value: "100%", title: "New Equipment", description: "Latest fitness technology available", icon: Zap,
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "12",
|
||||
title: "Open Till Midnight",
|
||||
description: "Flexible training hours for professionals",
|
||||
icon: Clock,
|
||||
id: "4", value: "12", title: "Open Till Midnight", description: "Flexible training hours for professionals", icon: Clock,
|
||||
},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
@@ -167,44 +145,29 @@ export default function HomePage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Weight Training",
|
||||
description:
|
||||
"State-of-the-art strength training equipment with personalized guidance from certified trainers. Build muscle and increase power.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/still-life-gym-equipment_23-2148197736.jpg?_wi=1",
|
||||
},
|
||||
title: "Weight Training", description:
|
||||
"State-of-the-art strength training equipment with personalized guidance from certified trainers. Build muscle and increase power.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/still-life-gym-equipment_23-2148197736.jpg"},
|
||||
{
|
||||
id: 2,
|
||||
title: "Cardio Excellence",
|
||||
description:
|
||||
"Premium cardio machines including treadmills, ellipticals, and rowing machines. Improve endurance and heart health.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-woman-gym-fitnes_624325-2383.jpg?_wi=1",
|
||||
},
|
||||
title: "Cardio Excellence", description:
|
||||
"Premium cardio machines including treadmills, ellipticals, and rowing machines. Improve endurance and heart health.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-woman-gym-fitnes_624325-2383.jpg"},
|
||||
{
|
||||
id: 3,
|
||||
title: "Personal Training",
|
||||
description:
|
||||
"One-on-one coaching with certified fitness professionals. Customized workout plans tailored to your goals.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-sports-people-training-morning-gym_1157-32133.jpg?_wi=1",
|
||||
},
|
||||
title: "Personal Training", description:
|
||||
"One-on-one coaching with certified fitness professionals. Customized workout plans tailored to your goals.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-sports-people-training-morning-gym_1157-32133.jpg"},
|
||||
{
|
||||
id: 4,
|
||||
title: "Fitness Testing",
|
||||
description:
|
||||
"Comprehensive fitness assessments and body composition analysis. Track progress with scientific precision.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/female-athlete-doing-physical-effort-stepper-doctor-follows-her-sports-laboratory_482257-31674.jpg",
|
||||
},
|
||||
title: "Fitness Testing", description:
|
||||
"Comprehensive fitness assessments and body composition analysis. Track progress with scientific precision.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/female-athlete-doing-physical-effort-stepper-doctor-follows-her-sports-laboratory_482257-31674.jpg"},
|
||||
{
|
||||
id: 5,
|
||||
title: "Nutrition Counseling",
|
||||
description:
|
||||
"Expert nutrition guidance and meal planning. Achieve your fitness goals with the right dietary support.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/healthy-menu-recipe-food-diet_53876-122837.jpg",
|
||||
},
|
||||
title: "Nutrition Counseling", description:
|
||||
"Expert nutrition guidance and meal planning. Achieve your fitness goals with the right dietary support.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/healthy-menu-recipe-food-diet_53876-122837.jpg"},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="blur-reveal"
|
||||
@@ -237,76 +200,34 @@ export default function HomePage() {
|
||||
tag="Member Success Stories"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Lost 15kg in 3 Months",
|
||||
quote:
|
||||
"The trainers at IFC are incredibly motivating. They designed a perfect plan for my weight loss journey and I saw results within weeks. The clean environment and quality crowd kept me motivated throughout.",
|
||||
name: "Priya Desai",
|
||||
role: "Marketing Executive",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg",
|
||||
imageAlt: "Priya Desai transformation",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Built Muscle & Confidence",
|
||||
quote:
|
||||
"As a beginner, I was intimidated. But the certified trainers made me feel comfortable and guided me through every step. The quality of equipment and people here is unmatched in Dharavi.",
|
||||
name: "Arjun Patel",
|
||||
role: "Software Developer",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/brutal-muscular-male-with-crossed-arms-dressed-blue-t-shirt-grey-background_613910-10043.jpg",
|
||||
imageAlt: "Arjun Patel muscle building journey",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Perfect Balance of Fitness",
|
||||
quote:
|
||||
"I love the 24-hour access and flexible timings. The nutrition counseling helped me understand the science behind fitness. IFC is not just a gym, it's a complete wellness center.",
|
||||
name: "Anjali Verma",
|
||||
role: "Entrepreneur",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/close-up-successful-entrepreneur_1098-3855.jpg",
|
||||
imageAlt: "Anjali Verma fitness journey",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Best Investment I Made",
|
||||
quote:
|
||||
"Six months at IFC completely changed my lifestyle. The trainers pushed me to my limits in the best way possible. The community vibe is energetic and supportive.",
|
||||
name: "Vikram Singh",
|
||||
role: "Banker",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg",
|
||||
imageAlt: "Vikram Singh fitness transformation",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Exceeded All Expectations",
|
||||
quote:
|
||||
"Coming from a fancy Mumbai gym, I was skeptical. But IFC has premium equipment, expert trainers, and genuine members. The pricing is unbeatable for the quality offered.",
|
||||
name: "Neha Kapoor",
|
||||
role: "HR Manager",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg",
|
||||
imageAlt: "Neha Kapoor premium gym experience",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
title: "Consistent Results",
|
||||
quote:
|
||||
"The structured programs and professional coaching made all the difference. I transformed from sedentary to athletic in just one year. Highly recommend IFC to anyone serious about fitness.",
|
||||
name: "Rohan Gupta",
|
||||
role: "Business Analyst",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/handsome-groom-classy-black-suit-stands-dark-room_8353-7083.jpg",
|
||||
imageAlt: "Rohan Gupta fitness achievement",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Lost 15kg in 3 Months", quote:
|
||||
"The trainers at IFC are incredibly motivating. They designed a perfect plan for my weight loss journey and I saw results within weeks. The clean environment and quality crowd kept me motivated throughout.", name: "Priya Desai", role: "Marketing Executive", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg", imageAlt: "Priya Desai transformation"},
|
||||
{
|
||||
id: "2", title: "Built Muscle & Confidence", quote:
|
||||
"As a beginner, I was intimidated. But the certified trainers made me feel comfortable and guided me through every step. The quality of equipment and people here is unmatched in Dharavi.", name: "Arjun Patel", role: "Software Developer", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/brutal-muscular-male-with-crossed-arms-dressed-blue-t-shirt-grey-background_613910-10043.jpg", imageAlt: "Arjun Patel muscle building journey"},
|
||||
{
|
||||
id: "3", title: "Perfect Balance of Fitness", quote:
|
||||
"I love the 24-hour access and flexible timings. The nutrition counseling helped me understand the science behind fitness. IFC is not just a gym, it's a complete wellness center.", name: "Anjali Verma", role: "Entrepreneur", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/close-up-successful-entrepreneur_1098-3855.jpg", imageAlt: "Anjali Verma fitness journey"},
|
||||
{
|
||||
id: "4", title: "Best Investment I Made", quote:
|
||||
"Six months at IFC completely changed my lifestyle. The trainers pushed me to my limits in the best way possible. The community vibe is energetic and supportive.", name: "Vikram Singh", role: "Banker", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", imageAlt: "Vikram Singh fitness transformation"},
|
||||
{
|
||||
id: "5", title: "Exceeded All Expectations", quote:
|
||||
"Coming from a fancy Mumbai gym, I was skeptical. But IFC has premium equipment, expert trainers, and genuine members. The pricing is unbeatable for the quality offered.", name: "Neha Kapoor", role: "HR Manager", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg", imageAlt: "Neha Kapoor premium gym experience"},
|
||||
{
|
||||
id: "6", title: "Consistent Results", quote:
|
||||
"The structured programs and professional coaching made all the difference. I transformed from sedentary to athletic in just one year. Highly recommend IFC to anyone serious about fitness.", name: "Rohan Gupta", role: "Business Analyst", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/handsome-groom-classy-black-suit-stands-dark-room_8353-7083.jpg", imageAlt: "Rohan Gupta fitness achievement"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
|
||||
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import Link from "next/link";
|
||||
import { Zap, Sparkles } from "lucide-react";
|
||||
|
||||
@@ -59,7 +59,7 @@ export default function ServicesPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="blurBottom"
|
||||
background="circleGradient"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
@@ -102,28 +102,19 @@ export default function ServicesPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Weight Training Programs",
|
||||
description:
|
||||
"Build strength and muscle with our comprehensive weight training programs. Our certified trainers create personalized routines using modern equipment and proven techniques.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/still-life-gym-equipment_23-2148197736.jpg?_wi=3",
|
||||
},
|
||||
title: "Weight Training Programs", description:
|
||||
"Build strength and muscle with our comprehensive weight training programs. Our certified trainers create personalized routines using modern equipment and proven techniques.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/still-life-gym-equipment_23-2148197736.jpg"},
|
||||
{
|
||||
id: 2,
|
||||
title: "Cardio & Endurance",
|
||||
description:
|
||||
"Improve cardiovascular health and stamina with premium cardio equipment including treadmills, rowing machines, and ellipticals guided by fitness experts.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-woman-gym-fitnes_624325-2383.jpg?_wi=3",
|
||||
},
|
||||
title: "Cardio & Endurance", description:
|
||||
"Improve cardiovascular health and stamina with premium cardio equipment including treadmills, rowing machines, and ellipticals guided by fitness experts.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-woman-gym-fitnes_624325-2383.jpg"},
|
||||
{
|
||||
id: 3,
|
||||
title: "One-on-One Personal Training",
|
||||
description:
|
||||
"Get dedicated attention from certified trainers who design custom workout plans, monitor form, and adjust intensity to match your progress and goals.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-sports-people-training-morning-gym_1157-32133.jpg?_wi=3",
|
||||
},
|
||||
title: "One-on-One Personal Training", description:
|
||||
"Get dedicated attention from certified trainers who design custom workout plans, monitor form, and adjust intensity to match your progress and goals.", imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-sports-people-training-morning-gym_1157-32133.jpg"},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="blur-reveal"
|
||||
|
||||
Reference in New Issue
Block a user