From 3f85c22f5ca2e157e4444bbde3171cba822c8ad5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 21:50:39 +0000 Subject: [PATCH] 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 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}