import type { Metadata } from "next"; import { Plus_Jakarta_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const plusJakartaSans = Plus_Jakarta_Sans({ variable: "--font-plus-jakarta-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Addiction Recovery Center - Professional Treatment Programs", description: "Professional addiction recovery center offering comprehensive treatment programs. Compassionate care, evidence-based approach, and real success stories.", keywords: "addiction recovery, rehab center, treatment programs, recovery services, sober living", metadataBase: new URL("http://localhost:3000"), robots: { index: true, follow: true, }, openGraph: { title: "Recovery Center - Start Your Healing Journey", description: "Professional addiction recovery center dedicated to helping individuals reclaim their lives.", type: "website", siteName: "Recovery Center", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}