Update src/app/layout.tsx

This commit is contained in:
2026-03-19 10:40:17 +00:00
parent 3356e144b1
commit d582cfdfa0

View File

@@ -1,24 +1,63 @@
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";
import { Open_Sans } 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 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<{
@@ -27,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}