From 3d0caba6d059b34e4ce6635d51cc8caa260b2693 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 04:58:02 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c62e8c2..12a68b1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "CarePlus Multispeciality Clinic | Premium Healthcare", description: "Experience compassionate, modern medical care at CarePlus. Expert doctors, same-day appointments, transparent pricing. Book your consultation today.", keywords: "medical clinic, multispeciality clinic, healthcare, doctors, dental care, pediatrics, emergency care, trusted healthcare", metadataBase: new URL("https://careplusclinic.com"), - alternates: { - canonical: "https://careplusclinic.com"}, - openGraph: { - title: "CarePlus Multispeciality Clinic | Premium Healthcare", description: "Experience compassionate, modern medical care. Expert doctors, advanced equipment, patient-first approach.", url: "https://careplusclinic.com", siteName: "CarePlus Clinic", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/african-american-assistant-patients-engage-medical-checkup_482257-122746.jpg", alt: "CarePlus Multispeciality Clinic"}, - ], - }, - twitter: { - card: "summary_large_image", title: "CarePlus Multispeciality Clinic | Premium Healthcare", description: "Compassionate care you can trust. Modern medical facility with expert doctors.", images: ["http://img.b2bpic.net/free-photo/african-american-assistant-patients-engage-medical-checkup_482257-122746.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CarePlus Clinic - Compassionate Healthcare", description: "Advanced treatment with a human touch. Trusted by families for safe, comfortable, and modern healthcare."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}