diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index c3c9a88..e122fcc 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -50,7 +50,7 @@ export default function AboutPage() { description="Located at 8 Angus Road, Harare" subdescription="Trusted by patients across Zimbabwe for complex neurosurgical expertise" icon={Brain} - imageSrc="http://img.b2bpic.net/free-vector/hospital-ward-equipment-isometric_1284-22545.jpg" + imageSrc="http://img.b2bpic.net/free-vector/hospital-ward-equipment-isometric_1284-22545.jpg?_wi=2" imageAlt="NeuroCare Harare clinical facility exterior" mediaAnimation="slide-up" useInvertedBackground={false} @@ -73,7 +73,7 @@ export default function AboutPage() { "Decades of combined experience in complex neurological procedures", "Commitment to continuous medical education and surgical innovation", ], - imageSrc: "http://img.b2bpic.net/free-photo/coronavirus-medical-staff-banner-template-mockup_53876-144182.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/coronavirus-medical-staff-banner-template-mockup_53876-144182.jpg?_wi=2", imageAlt: "Neurosurgical team in operating room", }, { @@ -84,7 +84,7 @@ export default function AboutPage() { "Intraoperative navigation and neurophysiological monitoring systems", "Latest imaging technology for precise diagnosis and surgical planning", ], - imageSrc: "http://img.b2bpic.net/free-photo/dental-tools-equipment_1232-4449.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/dental-tools-equipment_1232-4449.jpg?_wi=2", imageAlt: "Advanced neurosurgical instruments and equipment", }, { @@ -95,7 +95,7 @@ export default function AboutPage() { "High success rates for complex surgical procedures", "Comprehensive post-operative care and rehabilitation support", ], - imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-giving-assistance-disabled-old-woman_482257-18049.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-giving-assistance-disabled-old-woman_482257-18049.jpg?_wi=2", imageAlt: "Patient recovery and rehabilitation success", }, ]} 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}