|
|
|
|
@@ -1,49 +1,25 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Raleway } from "next/font/google";
|
|
|
|
|
import { Poppins } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const raleway = Raleway({
|
|
|
|
|
variable: "--font-raleway",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
const poppins = Poppins({
|
|
|
|
|
variable: "--font-poppins", subsets: ["latin"],
|
|
|
|
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Modern Multidisciplinary Medical Center | Expert Healthcare",
|
|
|
|
|
description: "State-of-the-art medical center offering comprehensive healthcare across 16+ specialties. Expert physicians, advanced facilities, and patient-centered care.",
|
|
|
|
|
keywords: "medical center, healthcare, doctors, hospital, specialties, cardiology, orthopedic, neurology, oncology",
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Modern Multidisciplinary Medical Center",
|
|
|
|
|
description: "Comprehensive healthcare excellence with expert physicians and state-of-the-art facilities.",
|
|
|
|
|
type: "website",
|
|
|
|
|
siteName: "Medical Center",
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "Modern Multidisciplinary Medical Center",
|
|
|
|
|
description: "Expert healthcare across 16+ medical specialties",
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Medical Center", description: "Comprehensive healthcare excellence with state-of-the-art facilities"};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${raleway.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={poppins.variable}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1411,7 +1387,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|