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}