diff --git a/src/app/classes/page.tsx b/src/app/classes/page.tsx index 9b2aa80..9fd3b1f 100644 --- a/src/app/classes/page.tsx +++ b/src/app/classes/page.tsx @@ -109,7 +109,7 @@ export default function ClassesPage() { }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/happy-female-athlete-cycling-exercise-bike-cross-training-health-club_637285-2529.jpg" + imageSrc="http://img.b2bpic.net/free-photo/happy-female-athlete-cycling-exercise-bike-cross-training-health-club_637285-2529.jpg?_wi=2" imageAlt="Fitness class in session" showDimOverlay={true} showBlur={true} @@ -132,7 +132,7 @@ export default function ClassesPage() { "High-intensity interval training sessions", "Burn maximum calories in minimum time", ], - imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-dumbbells-bar_23-2148801858.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-dumbbells-bar_23-2148801858.jpg?_wi=2", }, { id: "yoga", @@ -141,7 +141,7 @@ export default function ClassesPage() { "Flow-based and strength-building yoga practices", "Improve flexibility and mental clarity", ], - imageSrc: "http://img.b2bpic.net/free-photo/female-yoga-teacher-teaching-class_23-2148925784.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/female-yoga-teacher-teaching-class_23-2148925784.jpg?_wi=2", }, { id: "spinning", @@ -150,7 +150,7 @@ export default function ClassesPage() { "Energetic group cycling sessions with rhythm", "Low-impact cardio with high motivation", ], - imageSrc: "http://img.b2bpic.net/free-photo/happy-female-athlete-cycling-exercise-bike-cross-training-health-club_637285-2529.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-female-athlete-cycling-exercise-bike-cross-training-health-club_637285-2529.jpg?_wi=3", }, { id: "pilates", @@ -159,7 +159,7 @@ export default function ClassesPage() { "Controlled movements for core strength", "Build lean muscle and improve posture", ], - imageSrc: "http://img.b2bpic.net/free-photo/people-pilates-reformer-class-exercising-their-bodies_23-2150858080.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-pilates-reformer-class-exercising-their-bodies_23-2150858080.jpg?_wi=2", }, { id: "crossfit", @@ -168,7 +168,7 @@ export default function ClassesPage() { "Compound movements for full-body strength", "Community-driven group challenges", ], - imageSrc: "http://img.b2bpic.net/free-photo/ahlete-doing-pushups-gym-with-bare-torso-sport-lifestyle_169016-58094.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/ahlete-doing-pushups-gym-with-bare-torso-sport-lifestyle_169016-58094.jpg?_wi=2", }, { id: "zumba", @@ -177,7 +177,7 @@ export default function ClassesPage() { "Fun and energetic dance fitness sessions", "Improve coordination while burning calories", ], - imageSrc: "http://img.b2bpic.net/free-photo/concept-yoga-fitness-pregnancy_146671-15801.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/concept-yoga-fitness-pregnancy_146671-15801.jpg?_wi=2", }, ]} gridVariant="bento-grid" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..9f61823 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Figtree } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "FitForce Gym - Premium Fitness Center & Training", + description: "Transform your fitness journey at FitForce Gym. Expert trainers, world-class facilities, and supportive community. Join 2,500+ members today.", + keywords: "gym membership, fitness center, personal training, weight loss, strength training", + metadataBase: new URL("https://fitforcegym.com"), + alternates: { + canonical: "https://fitforcegym.com", + }, + openGraph: { + title: "FitForce Gym - Your Fitness Transformation Starts Here", + description: "Join FitForce Gym and transform your body. Expert trainers, premium facilities, supportive community.", + url: "https://fitforcegym.com", + siteName: "FitForce Gym", + images: [ + { + url: "http://img.b2bpic.net/free-photo/full-shot-woman-helping-men-gym_23-2149744680.jpg", + alt: "FitForce Gym Premium Fitness Center", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "FitForce Gym - Transform Your Fitness", + description: "Expert trainers and premium facilities for your fitness journey.", + images: ["http://img.b2bpic.net/free-photo/full-shot-woman-helping-men-gym_23-2149744680.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}