83 lines
2.6 KiB
TypeScript
83 lines
2.6 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import { Open_Sans } from "next/font/google";
|
|
import "./globals.css";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const openSans = Open_Sans({
|
|
variable: "--font-open-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Jain Physiotherapy Clinic Bhopal - Expert Treatment & Recovery",
|
|
description: "Expert physiotherapy care in Bhopal. Specialized treatment for back pain, neck pain, joint injuries, and post-surgery rehabilitation by Dr. Jhankar Jain. Book appointment now.",
|
|
keywords: "physiotherapy bhopal, back pain treatment, neck pain relief, joint pain therapy, post-surgery rehabilitation, physiotherapist near char imli",
|
|
metadataBase: new URL("https://jainphysiotherapy.com"),
|
|
alternates: {
|
|
canonical: "https://jainphysiotherapy.com",
|
|
},
|
|
openGraph: {
|
|
title: "Jain Physiotherapy Clinic - Pain Relief & Recovery",
|
|
description: "Expert physiotherapy treatment in Bhopal. Personalized care from experienced Dr. Jhankar Jain. Call now for appointment.",
|
|
url: "https://jainphysiotherapy.com",
|
|
siteName: "Jain Physiotherapy Clinic",
|
|
images: [
|
|
{
|
|
url: "http://img.b2bpic.net/free-photo/injured-senior-man-with-neck-brace-laying-bed_482257-15289.jpg",
|
|
alt: "Jain Physiotherapy Clinic",
|
|
},
|
|
],
|
|
type: "website",
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "Jain Physiotherapy Clinic - Expert Care in Bhopal",
|
|
description: "Personalized physiotherapy treatment for pain relief and recovery. Book your appointment today.",
|
|
images: [
|
|
"http://img.b2bpic.net/free-photo/injured-senior-man-with-neck-brace-laying-bed_482257-15289.jpg",
|
|
],
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |