diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 13a449b..e553042 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "In-Home Care Services | Quality Care Home Care", description: "Compassionate, reliable in-home care tailored to your family's needs. Trusted by local families. Schedule a free consultation today.", keywords: "in-home care, elderly care, caregiving services, home health care, senior care, respite care", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Quality Care Home Care - Compassionate In-Home Care", description: "Trusted, reliable in-home care services. Peace of mind for your family.", type: "website", siteName: "Quality Care Home Care LLC", images: [ - { - url: "http://img.b2bpic.net/free-photo/happy-nurse-holding-laughing-elderly-man-hand-wheelchair-garden-nursing-home_554837-115.jpg", alt: "Compassionate caregiver assisting elderly woman"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Quality Care Home Care - Compassionate Care", description: "Trusted in-home care services for your loved ones.", images: ["http://img.b2bpic.net/free-photo/happy-nurse-holding-laughing-elderly-man-hand-wheelchair-garden-nursing-home_554837-115.jpg"], - }, -}; + title: "Quality Care Home Care", description: "Compassionate, reliable in-home care tailored to your family's needs"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}