From 7a1cebe089caef35aedd7c03bcb34189ad9e7f2a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:06:33 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++------------------------------------ 1 file changed, 7 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2645f38..0b96dc4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "FitZone - Premium Gym & Fitness Classes", description: "Transform your fitness journey at FitZone. Expert trainers, diverse classes, and a supportive community. Join today and achieve your goals!", keywords: "gym, fitness classes, personal training, strength training, yoga, cardio, fitness community", openGraph: { - title: "FitZone - Your Fitness Transformation Starts Here", description: "Premium gym with expert trainers, diverse classes, and supportive community. Transform your body and mind.", type: "website", siteName: "FitZone", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-woman-practices-aerial-anti-gravity-yoga_1153-4840.jpg", alt: "FitZone gym fitness training"}, - ], - }, - twitter: { - card: "summary_large_image", title: "FitZone - Premium Gym & Fitness", description: "Transform your fitness journey with expert trainers and a supportive community.", images: ["http://img.b2bpic.net/free-photo/young-woman-practices-aerial-anti-gravity-yoga_1153-4840.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "FitZone - Transform Your Fitness", description: "Join FitZone fitness community"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}