diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b7b7fe1..4c9bc9c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -80,7 +80,7 @@ export default function AboutPage() { description="NeuroCare Centre is dedicated to providing exceptional neurosurgical and neurological care with a patient-first approach." subdescription="Located at 8 Angus Road, Harare - Rated 4.8/5 by our patients" icon={Stethoscope} - imageSrc="http://img.b2bpic.net/free-photo/sunroof-with-tensioners_1127-2102.jpg" + imageSrc="http://img.b2bpic.net/free-photo/sunroof-with-tensioners_1127-2102.jpg?_wi=2" imageAlt="NeuroCare Centre professional medical facility" mediaAnimation="slide-up" useInvertedBackground={false} @@ -95,19 +95,19 @@ export default function AboutPage() { { id: "1", name: "Dr. Chikondi Banda", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-wearing-coat_23-2148816198.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-wearing-coat_23-2148816198.jpg?_wi=1", imageAlt: "Dr. Chikondi Banda, Chief Neurosurgeon", }, { id: "2", name: "Dr. Sipho Dlamini", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-wearing-coat_23-2148816198.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-wearing-coat_23-2148816198.jpg?_wi=2", imageAlt: "Dr. Sipho Dlamini, Spinal Surgery Specialist", }, { id: "3", name: "Dr. Amina Hassan", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-wearing-coat_23-2148816198.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-wearing-coat_23-2148816198.jpg?_wi=3", imageAlt: "Dr. Amina Hassan, Pediatric Neurosurgeon", }, { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..fc7be2f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } 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 { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "NeuroCare Centre | Expert Neurosurgery in Harare, Zimbabwe", + description: "Premier neurosurgery clinic in Harare offering complex spine surgery, brain tumor treatment, pediatric neurosurgery, and advanced neurological diagnostics. Rated 4.8/5 stars. Book consultation now.", + keywords: "neurosurgeon Harare, spine surgery Zimbabwe, brain tumor surgery, neurosurgery clinic, neurological treatment, EEG testing, EMG diagnostics, back pain clinic, pediatric neurosurgery, NeuroneX diagnostics", + metadataBase: new URL("https://neurocarecentre.co.zw"), + alternates: { + canonical: "https://neurocarecentre.co.zw", + }, + openGraph: { + title: "NeuroCare Centre - Advanced Neurosurgery & Neurological Care in Harare", + description: "Expert neurosurgeons providing complex spine surgery, brain tumor treatment, and specialized neurological care. 4.8/5 patient satisfaction. Located in Harare, Zimbabwe.", + url: "https://neurocarecentre.co.zw", + siteName: "NeuroCare Centre", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/young-female-dentist-dental-office-dentist-work-dental-treatment-concept_169016-67176.jpg", + alt: "NeuroCare Centre professional neurosurgery facility", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "NeuroCare Centre - Expert Neurosurgery in Harare", + description: "Premier neurosurgical and neurological treatment center. Complex spine surgery, brain tumor surgery, pediatric neurosurgery, advanced diagnostics.", + images: ["http://img.b2bpic.net/free-photo/young-female-dentist-dental-office-dentist-work-dental-treatment-concept_169016-67176.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}