From 4a2304cb556ce8a053a165b46cd00095ec62f8d7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:34:09 +0000 Subject: [PATCH 1/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..63ff159 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 { 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 ( - + {children}