diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b8dc8d3..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1437 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Muscle Mania Gym - Best Gym in Sahiwal | Bodybuilding & Fitness Training", - description: "Join Muscle Mania Gym in Sahiwal for professional bodybuilding, fitness training, and strength development. Modern equipment, friendly trainers, and supportive community. Call +92 313 4708376 today.", - keywords: "best gym in Sahiwal, bodybuilding gym Sahiwal, fitness gym Sahiwal, muscle training, strength training Sahiwal, gym near police station, fitness center Sahiwal, personal training Sahiwal", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Muscle Mania Gym - Build Strength, Transform Your Body", - description: "Sahiwal's trusted gym for serious fitness training with modern equipment and professional trainers.", - url: "https://musclemaniaygm.com", - siteName: "Muscle Mania Gym", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/full-shot-woman-doing-tree-pose-outside_23-2148717288.jpg", - alt: "Muscle Mania Gym - Professional Fitness Training", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Muscle Mania Gym - Best Gym in Sahiwal", - description: "Join now for bodybuilding, fitness training, and strength development. Call +92 313 4708376", - images: ["http://img.b2bpic.net/free-photo/full-shot-woman-doing-tree-pose-outside_23-2148717288.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -