From 9593a0dfdaac65b591d5969b8815d7bbe294b18a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:00:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 +++++++------------------------------------- 1 file changed, 7 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 18c8ec8..2d08bb1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Personal Trainer Coaching | Elite Fit Coaching", description: "Transform your fitness with expert personal coaching. Custom workout plans, nutrition guidance, and accountability coaching for lasting results.", keywords: "personal trainer, fitness coaching, personal training, online coaching, private trainer", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Personal Trainer Coaching | Elite Fit Coaching", description: "Transform your fitness with expert personal coaching. Custom workout plans, nutrition guidance, and accountability coaching.", type: "website", siteName: "Elite Fit Coaching", images: [ - { - url: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-people_23-2151098646.jpg", alt: "Personal trainer coaching"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Personal Trainer Coaching | Elite Fit Coaching", description: "Transform your fitness with expert personal coaching", images: ["http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-people_23-2151098646.jpg"], - }, -}; + title: "Elite Fit Coaching", description: "Transform Your Body, Transform Your Life"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}