From b25e6cf5f53e63d7f347166a909da0304247ccf8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:47:16 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..07a3309 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Mulish } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Neurosurgery & Neurological Treatment | NeuroCare Harare", + description: "Premier neurosurgery center in Harare offering expert brain tumor surgery, spine surgery, functional neurosurgery, and advanced diagnostic services. 4.8/5 rated by patients.", + keywords: "neurosurgeon Harare, spine surgery Zimbabwe, brain tumor surgery, neurological treatment, complex neurosurgery, pediatric neurosurgery, back pain clinic", + metadataBase: new URL("https://www.neurocare-harare.zw"), + alternates: { + canonical: "https://www.neurocare-harare.zw", + }, + openGraph: { + title: "Expert Neurosurgery & Neurological Care | NeuroCare Harare", + description: "Harare's leading neurosurgery center with advanced surgical expertise and cutting-edge technology. Book your consultation today.", + url: "https://www.neurocare-harare.zw", + siteName: "NeuroCare Harare", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/general-practitioner-leverages-digital-tools-better-diagnostics-analysis_482257-126566.jpg", + alt: "NeuroCare Harare modern surgical facility", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Expert Neurosurgery in Harare | NeuroCare", + description: "Advanced neurosurgical care and neurological treatment. Board-certified neurosurgeons. Book your consultation: 077 547 2744", + images: ["http://img.b2bpic.net/free-photo/general-practitioner-leverages-digital-tools-better-diagnostics-analysis_482257-126566.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}