Merge version_1 into main #1
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } 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 { Open_Sans } 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 openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "The Royal Fitness Club - Best Gym in Gwalior",
|
||||
description: "Join Gwalior's highest-rated gym (4.9★). Professional trainers, modern equipment, strength training & weight loss programs. Call 075838 16240 for your free trial.",
|
||||
keywords: "gym in Gwalior, fitness club Thatipur, personal trainer Gwalior, strength training, weight loss programs, best gym in Gwalior",
|
||||
metadataBase: new URL("https://theroyalfitness.com"),
|
||||
alternates: {
|
||||
canonical: "https://theroyalfitness.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "The Royal Fitness Club - Gwalior's Highest Rated Gym",
|
||||
description: "Train Like Royalty. Join 120+ members at The Royal Fitness Club. Professional trainers, modern equipment, proven results. 4.9★ rating.",
|
||||
url: "https://theroyalfitness.com",
|
||||
siteName: "The Royal Fitness Club",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/ritual-calm-sauna-light-woman-by-door_169016-69085.jpg",
|
||||
alt: "The Royal Fitness Club - Premium Gym Facility",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "The Royal Fitness Club - Gwalior's Highest Rated Gym",
|
||||
description: "Join our fitness community. Professional trainers, modern equipment, guaranteed results. Call now for free trial!",
|
||||
images: ["http://img.b2bpic.net/free-photo/ritual-calm-sauna-light-woman-by-door_169016-69085.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${openSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -58,7 +58,7 @@ export default function MembershipPage() {
|
||||
href: "#membership-plans",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/ritual-calm-sauna-light-woman-by-door_169016-69085.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/ritual-calm-sauna-light-woman-by-door_169016-69085.jpg?_wi=2"
|
||||
imageAlt="The Royal Fitness Club - Membership Plans"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -139,7 +139,7 @@ export default function MembershipPage() {
|
||||
author: "Always Available",
|
||||
description: "Train anytime that suits your schedule. Our facility is open round the clock with secure access for all members.",
|
||||
tags: ["Convenience", "Flexibility"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ritual-calm-sauna-light-woman-by-door_169016-69085.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ritual-calm-sauna-light-woman-by-door_169016-69085.jpg?_wi=3",
|
||||
imageAlt: "24/7 Facility Access",
|
||||
},
|
||||
{
|
||||
@@ -148,7 +148,7 @@ export default function MembershipPage() {
|
||||
author: "Community Training",
|
||||
description: "Access unlimited group fitness classes including strength training, cardio, and motivational community sessions.",
|
||||
tags: ["Classes", "Community"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-woman-sitting-stairs_23-2149161244.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-woman-sitting-stairs_23-2149161244.jpg?_wi=2",
|
||||
imageAlt: "Group Classes",
|
||||
},
|
||||
{
|
||||
@@ -157,7 +157,7 @@ export default function MembershipPage() {
|
||||
author: "Data-Driven Results",
|
||||
description: "Monitor your transformation with our comprehensive fitness tracking system and personalized progress reports.",
|
||||
tags: ["Tracking", "Results"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-training-gym_23-2148024278.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-training-gym_23-2148024278.jpg?_wi=2",
|
||||
imageAlt: "Progress Tracking",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -59,7 +59,7 @@ export default function HomePage() {
|
||||
href: "/membership",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/ritual-calm-sauna-light-woman-by-door_169016-69085.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/ritual-calm-sauna-light-woman-by-door_169016-69085.jpg?_wi=1"
|
||||
imageAlt="The Royal Fitness Club - Modern gym facility with professional equipment"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -116,7 +116,7 @@ export default function HomePage() {
|
||||
author: "Build Power",
|
||||
description: "Modern machines and free weights for serious muscle growth. Progressive training programs designed by certified trainers.",
|
||||
tags: ["Equipment", "Dedicated"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-training-gym_23-2148024278.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-training-gym_23-2148024278.jpg?_wi=1",
|
||||
imageAlt: "Strength training equipment",
|
||||
},
|
||||
{
|
||||
@@ -134,7 +134,7 @@ export default function HomePage() {
|
||||
author: "Transform",
|
||||
description: "Structured programs designed specifically for fat loss. Combine cardio, strength training, and nutrition for guaranteed results.",
|
||||
tags: ["Cardio", "Nutrition"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-mobile-phone-while-doing-exercise-with-yellow-dumbbell_23-2148047389.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-mobile-phone-while-doing-exercise-with-yellow-dumbbell_23-2148047389.jpg?_wi=1",
|
||||
imageAlt: "Weight loss training program",
|
||||
},
|
||||
{
|
||||
@@ -143,7 +143,7 @@ export default function HomePage() {
|
||||
author: "Motivate",
|
||||
description: "Motivating environment that keeps you consistent. Train with disciplined athletes who push you to reach new heights.",
|
||||
tags: ["Community", "Motivation"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-woman-sitting-stairs_23-2149161244.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-woman-sitting-stairs_23-2149161244.jpg?_wi=1",
|
||||
imageAlt: "Fitness community training together",
|
||||
},
|
||||
]}
|
||||
@@ -164,7 +164,7 @@ export default function HomePage() {
|
||||
role: "Member",
|
||||
company: "Gwalior",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-dark-skinned-runner-resting-seaside-after-activity-open-air-sitting-embankment-enjoying-sunset-summer-evening-cheerful-student-spending-his-vacations-exercising-outdoors_273609-1184.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-dark-skinned-runner-resting-seaside-after-activity-open-air-sitting-embankment-enjoying-sunset-summer-evening-cheerful-student-spending-his-vacations-exercising-outdoors_273609-1184.jpg?_wi=1",
|
||||
imageAlt: "Rajesh Kumar - Member Success",
|
||||
},
|
||||
{
|
||||
@@ -173,7 +173,7 @@ export default function HomePage() {
|
||||
role: "Member",
|
||||
company: "Gwalior",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-fitness-trainer-gym_1303-13566.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-fitness-trainer-gym_1303-13566.jpg?_wi=1",
|
||||
imageAlt: "Priya Singh - Member Success",
|
||||
},
|
||||
{
|
||||
@@ -182,7 +182,7 @@ export default function HomePage() {
|
||||
role: "Head Trainer",
|
||||
company: "The Royal Fitness Club",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/care-male-healthy-weights-athletic_1139-695.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/care-male-healthy-weights-athletic_1139-695.jpg?_wi=1",
|
||||
imageAlt: "Vikram Patel - Head Trainer",
|
||||
},
|
||||
{
|
||||
@@ -191,7 +191,7 @@ export default function HomePage() {
|
||||
role: "Member",
|
||||
company: "Gwalior",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-back-extensions_23-2147687971.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-back-extensions_23-2147687971.jpg?_wi=1",
|
||||
imageAlt: "Anjali Verma - Member Success",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -61,7 +61,7 @@ export default function ReviewsPage() {
|
||||
role: "Member",
|
||||
company: "Gwalior",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-dark-skinned-runner-resting-seaside-after-activity-open-air-sitting-embankment-enjoying-sunset-summer-evening-cheerful-student-spending-his-vacations-exercising-outdoors_273609-1184.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-dark-skinned-runner-resting-seaside-after-activity-open-air-sitting-embankment-enjoying-sunset-summer-evening-cheerful-student-spending-his-vacations-exercising-outdoors_273609-1184.jpg?_wi=3",
|
||||
imageAlt: "Rajesh Kumar - Member Success",
|
||||
},
|
||||
{
|
||||
@@ -70,7 +70,7 @@ export default function ReviewsPage() {
|
||||
role: "Member",
|
||||
company: "Gwalior",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-fitness-trainer-gym_1303-13566.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-fitness-trainer-gym_1303-13566.jpg?_wi=3",
|
||||
imageAlt: "Priya Singh - Member Success",
|
||||
},
|
||||
{
|
||||
@@ -79,7 +79,7 @@ export default function ReviewsPage() {
|
||||
role: "Head Trainer",
|
||||
company: "The Royal Fitness Club",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/care-male-healthy-weights-athletic_1139-695.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/care-male-healthy-weights-athletic_1139-695.jpg?_wi=3",
|
||||
imageAlt: "Vikram Patel - Head Trainer",
|
||||
},
|
||||
{
|
||||
@@ -88,7 +88,7 @@ export default function ReviewsPage() {
|
||||
role: "Member",
|
||||
company: "Gwalior",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-back-extensions_23-2147687971.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-back-extensions_23-2147687971.jpg?_wi=3",
|
||||
imageAlt: "Anjali Verma - Member Success",
|
||||
},
|
||||
]}
|
||||
@@ -154,7 +154,7 @@ export default function ReviewsPage() {
|
||||
author: "Suresh Sharma",
|
||||
description: "Started at 95kg with zero gym experience. Followed Anjali's weight loss program combining cardio and strength training. Now at 70kg with incredible energy and confidence. Best decision ever!",
|
||||
tags: ["Transformation", "Weight Loss", "Motivation"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-mobile-phone-while-doing-exercise-with-yellow-dumbbell_23-2148047389.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-mobile-phone-while-doing-exercise-with-yellow-dumbbell_23-2148047389.jpg?_wi=3",
|
||||
imageAlt: "Weight loss transformation success",
|
||||
},
|
||||
{
|
||||
@@ -163,7 +163,7 @@ export default function ReviewsPage() {
|
||||
author: "Neha Gupta",
|
||||
description: "Trained with Vikram for strength building. Progressive overload and expert guidance took me from 55kg to 67kg of lean muscle. The community motivation here is unmatched!",
|
||||
tags: ["Strength", "Muscle Building", "Community"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-training-gym_23-2148024278.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-training-gym_23-2148024278.jpg?_wi=4",
|
||||
imageAlt: "Muscle building transformation success",
|
||||
},
|
||||
{
|
||||
@@ -172,7 +172,7 @@ export default function ReviewsPage() {
|
||||
author: "Aditya Verma",
|
||||
description: "The Royal Fitness Club feels like family. Trainers genuinely care about progress, equipment is top-notch, and the environment pushes you to be better every session. Couldn't ask for more!",
|
||||
tags: ["Community", "Support", "Excellence"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-woman-sitting-stairs_23-2149161244.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-woman-sitting-stairs_23-2149161244.jpg?_wi=3",
|
||||
imageAlt: "Community fitness environment",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -55,7 +55,7 @@ export default function TrainersPage() {
|
||||
author: "Head Trainer",
|
||||
description: "10+ years of strength training expertise. Specializes in bodybuilding, powerlifting, and performance coaching. Helps members build muscle and transform their physique with progressive overload principles.",
|
||||
tags: ["Strength", "Bodybuilding", "Certified"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/care-male-healthy-weights-athletic_1139-695.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/care-male-healthy-weights-athletic_1139-695.jpg?_wi=2",
|
||||
imageAlt: "Vikram Patel - Head Trainer",
|
||||
},
|
||||
{
|
||||
@@ -64,7 +64,7 @@ export default function TrainersPage() {
|
||||
author: "Weight Loss Specialist",
|
||||
description: "Expert in fat loss and body composition transformation. Combines cardio training with strength work and nutrition coaching. 8+ years helping women and men achieve sustainable weight loss.",
|
||||
tags: ["Weight Loss", "Nutrition", "Cardio"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-back-extensions_23-2147687971.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-back-extensions_23-2147687971.jpg?_wi=2",
|
||||
imageAlt: "Anjali Verma - Weight Loss Specialist",
|
||||
},
|
||||
{
|
||||
@@ -73,7 +73,7 @@ export default function TrainersPage() {
|
||||
author: "Personal Coach",
|
||||
description: "Specialized in personalized one-on-one coaching. Creates customized workout plans based on individual goals and fitness levels. Known for transforming beginners into confident lifters.",
|
||||
tags: ["Personal Training", "Beginners", "Custom Plans"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-dark-skinned-runner-resting-seaside-after-activity-open-air-sitting-embankment-enjoying-sunset-summer-evening-cheerful-student-spending-his-vacations-exercising-outdoors_273609-1184.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-dark-skinned-runner-resting-seaside-after-activity-open-air-sitting-embankment-enjoying-sunset-summer-evening-cheerful-student-spending-his-vacations-exercising-outdoors_273609-1184.jpg?_wi=2",
|
||||
imageAlt: "Rajesh Kumar - Personal Coach",
|
||||
},
|
||||
]}
|
||||
@@ -94,7 +94,7 @@ export default function TrainersPage() {
|
||||
role: "Trained by Vikram",
|
||||
company: "Gwalior",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-fitness-trainer-gym_1303-13566.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-fitness-trainer-gym_1303-13566.jpg?_wi=2",
|
||||
imageAlt: "Priya Singh - Member Success",
|
||||
},
|
||||
{
|
||||
@@ -103,7 +103,7 @@ export default function TrainersPage() {
|
||||
role: "Trained by Anjali",
|
||||
company: "Gwalior",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-training-gym_23-2148024278.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-training-gym_23-2148024278.jpg?_wi=3",
|
||||
imageAlt: "Suresh Sharma - Weight Loss Success",
|
||||
},
|
||||
{
|
||||
@@ -112,7 +112,7 @@ export default function TrainersPage() {
|
||||
role: "Trained by Rajesh",
|
||||
company: "Gwalior",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-mobile-phone-while-doing-exercise-with-yellow-dumbbell_23-2148047389.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-taking-selfie-mobile-phone-while-doing-exercise-with-yellow-dumbbell_23-2148047389.jpg?_wi=2",
|
||||
imageAlt: "Neha Gupta - Beginner to Strong",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user