Update src/app/layout.tsx

This commit is contained in:
2026-03-10 20:47:16 +00:00
parent f0686fb7ef
commit b25e6cf5f5

View File

@@ -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>
);
}
}