Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -100,7 +100,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
imageAlt="NeuroCare Harare clinical facility exterior"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -123,7 +123,7 @@ export default function HomePage() {
|
||||
"Minimally invasive spinal fusion procedures reducing recovery time and hospital stay",
|
||||
"Expert management of complex spinal trauma and stabilization",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-physiotherapist-helping-patient-with-back-problems_23-2149115624.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-physiotherapist-helping-patient-with-back-problems_23-2149115624.jpg?_wi=1",
|
||||
imageAlt: "Spine surgery and correction procedures",
|
||||
},
|
||||
{
|
||||
@@ -134,7 +134,7 @@ export default function HomePage() {
|
||||
"Intraoperative neuronavigation for maximum safety and complete tumor resection",
|
||||
"Comprehensive tumor management including pre- and post-operative care",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-empty-hospital-office-having-computer-with-mri-brain-diagaram-screen-ready-oncology-examination-cabinet-room-equipped-with-medical-professional-tools-brain-tomography-image_482257-32004.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-empty-hospital-office-having-computer-with-mri-brain-diagaram-screen-ready-oncology-examination-cabinet-room-equipped-with-medical-professional-tools-brain-tomography-image_482257-32004.jpg?_wi=1",
|
||||
imageAlt: "Brain tumor surgical procedure",
|
||||
},
|
||||
{
|
||||
@@ -145,7 +145,7 @@ export default function HomePage() {
|
||||
"Advanced resection techniques preserving neurological function",
|
||||
"Integration with oncology for comprehensive cancer care",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-putting-surgical-gloves-close-up_23-2148722297.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-putting-surgical-gloves-close-up_23-2148722297.jpg?_wi=1",
|
||||
imageAlt: "Spinal tumor surgical intervention",
|
||||
},
|
||||
{
|
||||
@@ -156,7 +156,7 @@ export default function HomePage() {
|
||||
"Expert management of pediatric brain tumors, hydrocephalus, and spinal disorders",
|
||||
"Family-centered approach with dedicated pediatric recovery facilities",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nurse-consulting-sick-hospitalized-little-daughter-resting-pediatric-healthcare-clinic-ward-patient-bed-ill-kid-recovering-from-disease-while-medical-staff-doing-health-condition-checkup_482257-49460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nurse-consulting-sick-hospitalized-little-daughter-resting-pediatric-healthcare-clinic-ward-patient-bed-ill-kid-recovering-from-disease-while-medical-staff-doing-health-condition-checkup_482257-49460.jpg?_wi=1",
|
||||
imageAlt: "Pediatric neurosurgical care",
|
||||
},
|
||||
{
|
||||
@@ -167,7 +167,7 @@ export default function HomePage() {
|
||||
"Treatment of tremor, Parkinson's disease, dystonia, and chronic pain conditions",
|
||||
"Intraoperative neurophysiological monitoring for precision targeting",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctors-talking-patient_23-2149103631.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctors-talking-patient_23-2149103631.jpg?_wi=1",
|
||||
imageAlt: "Functional neurosurgery procedures",
|
||||
},
|
||||
{
|
||||
@@ -178,7 +178,7 @@ export default function HomePage() {
|
||||
"Treatment of nerve entrapment syndromes and traumatic injuries",
|
||||
"Restoration of sensory and motor function",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-nurse-helping-patient_23-2149484038.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-nurse-helping-patient_23-2149484038.jpg?_wi=1",
|
||||
imageAlt: "Peripheral nerve surgical repair",
|
||||
},
|
||||
]}
|
||||
@@ -205,7 +205,7 @@ export default function HomePage() {
|
||||
"Sleep studies and neurological disturbance evaluation",
|
||||
"Intraoperative monitoring during neurosurgical procedures",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ophthalmologist-s-tools_23-2150917662.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ophthalmologist-s-tools_23-2150917662.jpg?_wi=1",
|
||||
imageAlt: "EEG monitoring equipment and setup",
|
||||
},
|
||||
{
|
||||
@@ -216,7 +216,7 @@ export default function HomePage() {
|
||||
"Diagnosis of nerve compression, muscle weakness, and movement disorders",
|
||||
"Intraoperative monitoring to protect nerve function",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-getting-her-arm-elbow-examined-by-male-orthopedist-medical-appointment-clinic_637285-387.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-getting-her-arm-elbow-examined-by-male-orthopedist-medical-appointment-clinic_637285-387.jpg?_wi=1",
|
||||
imageAlt: "EMG testing procedure",
|
||||
},
|
||||
{
|
||||
@@ -227,7 +227,7 @@ export default function HomePage() {
|
||||
"Evaluation of neuropathies, carpal tunnel syndrome, and nerve injuries",
|
||||
"Quick results aiding in diagnosis and treatment planning",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-using-smartphone-help-patient-sitting-his-office-doctor-talking-phone_482257-35160.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-using-smartphone-help-patient-sitting-his-office-doctor-talking-phone_482257-35160.jpg?_wi=1",
|
||||
imageAlt: "Nerve conduction study being performed",
|
||||
},
|
||||
{
|
||||
@@ -238,7 +238,7 @@ export default function HomePage() {
|
||||
"Comprehensive neurological assessment for complex disorders",
|
||||
"Real-time analysis and reporting for clinical decision-making",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/physician-meeting-with-patient-discuss-medical-test-results-cabinet_482257-118427.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/physician-meeting-with-patient-discuss-medical-test-results-cabinet_482257-118427.jpg?_wi=1",
|
||||
imageAlt: "NeuroneX diagnostic platform",
|
||||
},
|
||||
]}
|
||||
@@ -265,7 +265,7 @@ export default function HomePage() {
|
||||
"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=1",
|
||||
imageAlt: "Neurosurgical team in operating room",
|
||||
},
|
||||
{
|
||||
@@ -276,7 +276,7 @@ export default function HomePage() {
|
||||
"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=1",
|
||||
imageAlt: "Advanced neurosurgical instruments and equipment",
|
||||
},
|
||||
{
|
||||
@@ -287,7 +287,7 @@ export default function HomePage() {
|
||||
"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=1",
|
||||
imageAlt: "Patient recovery and rehabilitation success",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -53,7 +53,7 @@ export default function ServicesPage() {
|
||||
"Minimally invasive spinal fusion procedures reducing recovery time and hospital stay",
|
||||
"Expert management of complex spinal trauma and stabilization",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-physiotherapist-helping-patient-with-back-problems_23-2149115624.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-physiotherapist-helping-patient-with-back-problems_23-2149115624.jpg?_wi=2",
|
||||
imageAlt: "Spine surgery and correction procedures",
|
||||
},
|
||||
{
|
||||
@@ -64,7 +64,7 @@ export default function ServicesPage() {
|
||||
"Intraoperative neuronavigation for maximum safety and complete tumor resection",
|
||||
"Comprehensive tumor management including pre- and post-operative care",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-empty-hospital-office-having-computer-with-mri-brain-diagaram-screen-ready-oncology-examination-cabinet-room-equipped-with-medical-professional-tools-brain-tomography-image_482257-32004.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-empty-hospital-office-having-computer-with-mri-brain-diagaram-screen-ready-oncology-examination-cabinet-room-equipped-with-medical-professional-tools-brain-tomography-image_482257-32004.jpg?_wi=2",
|
||||
imageAlt: "Brain tumor surgical procedure",
|
||||
},
|
||||
{
|
||||
@@ -75,7 +75,7 @@ export default function ServicesPage() {
|
||||
"Advanced resection techniques preserving neurological function",
|
||||
"Integration with oncology for comprehensive cancer care",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-putting-surgical-gloves-close-up_23-2148722297.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-putting-surgical-gloves-close-up_23-2148722297.jpg?_wi=2",
|
||||
imageAlt: "Spinal tumor surgical intervention",
|
||||
},
|
||||
{
|
||||
@@ -86,7 +86,7 @@ export default function ServicesPage() {
|
||||
"Expert management of pediatric brain tumors, hydrocephalus, and spinal disorders",
|
||||
"Family-centered approach with dedicated pediatric recovery facilities",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nurse-consulting-sick-hospitalized-little-daughter-resting-pediatric-healthcare-clinic-ward-patient-bed-ill-kid-recovering-from-disease-while-medical-staff-doing-health-condition-checkup_482257-49460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nurse-consulting-sick-hospitalized-little-daughter-resting-pediatric-healthcare-clinic-ward-patient-bed-ill-kid-recovering-from-disease-while-medical-staff-doing-health-condition-checkup_482257-49460.jpg?_wi=2",
|
||||
imageAlt: "Pediatric neurosurgical care",
|
||||
},
|
||||
{
|
||||
@@ -97,7 +97,7 @@ export default function ServicesPage() {
|
||||
"Treatment of tremor, Parkinson's disease, dystonia, and chronic pain conditions",
|
||||
"Intraoperative neurophysiological monitoring for precision targeting",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctors-talking-patient_23-2149103631.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctors-talking-patient_23-2149103631.jpg?_wi=2",
|
||||
imageAlt: "Functional neurosurgery procedures",
|
||||
},
|
||||
{
|
||||
@@ -108,7 +108,7 @@ export default function ServicesPage() {
|
||||
"Treatment of nerve entrapment syndromes and traumatic injuries",
|
||||
"Restoration of sensory and motor function",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-nurse-helping-patient_23-2149484038.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-nurse-helping-patient_23-2149484038.jpg?_wi=2",
|
||||
imageAlt: "Peripheral nerve surgical repair",
|
||||
},
|
||||
]}
|
||||
@@ -134,7 +134,7 @@ export default function ServicesPage() {
|
||||
"Sleep studies and neurological disturbance evaluation",
|
||||
"Intraoperative monitoring during neurosurgical procedures",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ophthalmologist-s-tools_23-2150917662.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ophthalmologist-s-tools_23-2150917662.jpg?_wi=2",
|
||||
imageAlt: "EEG monitoring equipment and setup",
|
||||
},
|
||||
{
|
||||
@@ -145,7 +145,7 @@ export default function ServicesPage() {
|
||||
"Diagnosis of nerve compression, muscle weakness, and movement disorders",
|
||||
"Intraoperative monitoring to protect nerve function",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-getting-her-arm-elbow-examined-by-male-orthopedist-medical-appointment-clinic_637285-387.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-getting-her-arm-elbow-examined-by-male-orthopedist-medical-appointment-clinic_637285-387.jpg?_wi=2",
|
||||
imageAlt: "EMG testing procedure",
|
||||
},
|
||||
{
|
||||
@@ -156,7 +156,7 @@ export default function ServicesPage() {
|
||||
"Evaluation of neuropathies, carpal tunnel syndrome, and nerve injuries",
|
||||
"Quick results aiding in diagnosis and treatment planning",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-using-smartphone-help-patient-sitting-his-office-doctor-talking-phone_482257-35160.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-using-smartphone-help-patient-sitting-his-office-doctor-talking-phone_482257-35160.jpg?_wi=2",
|
||||
imageAlt: "Nerve conduction study being performed",
|
||||
},
|
||||
{
|
||||
@@ -167,7 +167,7 @@ export default function ServicesPage() {
|
||||
"Comprehensive neurological assessment for complex disorders",
|
||||
"Real-time analysis and reporting for clinical decision-making",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/physician-meeting-with-patient-discuss-medical-test-results-cabinet_482257-118427.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/physician-meeting-with-patient-discuss-medical-test-results-cabinet_482257-118427.jpg?_wi=2",
|
||||
imageAlt: "NeuroneX diagnostic platform",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user