diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9313f46..7c5d2b9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,43 +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"; -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: "TherapyFlow - Sports Therapy & Rehabilitation", description: "Expert sports therapy and rehabilitation services. Recover stronger with personalized treatment plans from certified professionals. 98% patient satisfaction.", keywords: "sports therapy, physical therapy, rehabilitation, injury recovery, sports medicine, athletic training", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "TherapyFlow - Sports Therapy & Rehabilitation", description: "Expert sports therapy and rehabilitation services designed to get you back to peak performance.", url: "https://therapyflow.com", siteName: "TherapyFlow", type: "website"}, - twitter: { - card: "summary_large_image", title: "TherapyFlow - Sports Therapy & Rehabilitation", description: "Expert sports therapy and rehabilitation services. Recover stronger with certified professionals."}, -}; + title: "TherapyFlow - Sports Therapy & Rehabilitation", description: "Expert sports therapy and rehabilitation designed to get you back to peak performance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}