diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d8cec60..bf51081 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -116,7 +116,7 @@ export default function AboutPage() { id: "doctor-main", name: "Dr. Jhankar Jain", role: "Chief Physiotherapist", - imageSrc: "http://img.b2bpic.net/free-photo/male-doctor-with-crossed-arms-raising-eyebrow_23-2148085195.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/male-doctor-with-crossed-arms-raising-eyebrow_23-2148085195.jpg?_wi=2", imageAlt: "Dr. Jhankar Jain", }, ]} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2582418..1ba11bc 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -91,7 +91,7 @@ export default function ContactPage() { tagAnimation="slide-up" background={{ variant: "plain" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-vector/hospital-care-landing-page-template_23-2151176625.jpg" + imageSrc="http://img.b2bpic.net/free-vector/hospital-care-landing-page-template_23-2151176625.jpg?_wi=2" imageAlt="Contact and appointment booking" mediaAnimation="slide-up" mediaPosition="right" @@ -143,25 +143,25 @@ export default function ContactPage() { { id: "testimonial-1", name: "Priya Sharma", - imageSrc: "http://img.b2bpic.net/free-photo/black-general-practitioner-communicating-with-mature-man-while-visiting-him-home_637285-11306.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/black-general-practitioner-communicating-with-mature-man-while-visiting-him-home_637285-11306.jpg?_wi=2", imageAlt: "Priya Sharma - Patient", }, { id: "testimonial-2", name: "Rajesh Kumar", - imageSrc: "http://img.b2bpic.net/free-photo/elderly-couple-after-training_1398-4933.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/elderly-couple-after-training_1398-4933.jpg?_wi=2", imageAlt: "Rajesh Kumar - Patient", }, { id: "testimonial-3", name: "Anika Patel", - imageSrc: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg?_wi=2", imageAlt: "Anika Patel - Patient", }, { id: "testimonial-4", name: "Vikram Singh", - imageSrc: "http://img.b2bpic.net/free-photo/doctor-taking-care-afro-american-child_23-2151159884.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/doctor-taking-care-afro-american-child_23-2151159884.jpg?_wi=2", imageAlt: "Vikram Singh - Patient", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..574a89a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}