Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -162,7 +162,7 @@ export default function HomePage() {
|
||||
author: "Specialized Treatment",
|
||||
description: "Expert treatment for chronic back pain, cervical spondylosis, and neck stiffness. Relief through targeted therapy and exercises.",
|
||||
tags: ["Pain Relief", "Professional"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/physiotherapist-helping-patient-her-clinic_23-2149115654.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/physiotherapist-helping-patient-her-clinic_23-2149115654.jpg?_wi=1",
|
||||
imageAlt: "Back pain physiotherapy treatment",
|
||||
},
|
||||
{
|
||||
@@ -171,7 +171,7 @@ export default function HomePage() {
|
||||
author: "Mobility Restoration",
|
||||
description: "Treatment for knee, shoulder, hip, and ankle pain. Restore full range of motion and reduce inflammation naturally.",
|
||||
tags: ["Joint Health", "Mobility"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-preparing-vaccination-her-colleague_23-2148880498.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-preparing-vaccination-her-colleague_23-2148880498.jpg?_wi=1",
|
||||
imageAlt: "Joint pain rehabilitation therapy",
|
||||
},
|
||||
{
|
||||
@@ -180,7 +180,7 @@ export default function HomePage() {
|
||||
author: "Recovery Support",
|
||||
description: "Specialized rehabilitation programs after orthopedic surgeries. Safe, guided recovery with proven techniques.",
|
||||
tags: ["Recovery", "Professional Care"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-view-client-working-out-trainer-holding-her-arm_23-2148795217.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-view-client-working-out-trainer-holding-her-arm_23-2148795217.jpg?_wi=1",
|
||||
imageAlt: "Post-surgery rehabilitation therapy",
|
||||
},
|
||||
]}
|
||||
@@ -223,7 +223,7 @@ export default function HomePage() {
|
||||
id: "doctor-1",
|
||||
name: "Dr. Jhankar Jain",
|
||||
role: "Physiotherapy Expert",
|
||||
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=1",
|
||||
imageAlt: "Dr. Jhankar Jain",
|
||||
},
|
||||
]}
|
||||
@@ -242,25 +242,25 @@ export default function HomePage() {
|
||||
{
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
imageAlt: "Vikram Singh - Patient",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -97,7 +97,7 @@ export default function ServicesPage() {
|
||||
author: "Pain Relief Specialists",
|
||||
description: "Comprehensive treatment for chronic back pain, lumbar strain, cervical spondylosis, and neck stiffness. We use advanced techniques including manual therapy, targeted exercises, and postural correction to provide lasting relief.",
|
||||
tags: ["Pain Relief", "Specialized", "Non-Invasive"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/physiotherapist-helping-patient-her-clinic_23-2149115654.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/physiotherapist-helping-patient-her-clinic_23-2149115654.jpg?_wi=2",
|
||||
imageAlt: "Back pain physiotherapy treatment",
|
||||
},
|
||||
{
|
||||
@@ -106,7 +106,7 @@ export default function ServicesPage() {
|
||||
author: "Orthopedic Specialists",
|
||||
description: "Expert treatment for knee pain, shoulder impingement, hip disorders, and ankle injuries. Our therapists restore joint function through progressive rehabilitation exercises and hands-on therapy techniques.",
|
||||
tags: ["Joint Health", "Mobility", "Professional"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-preparing-vaccination-her-colleague_23-2148880498.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-preparing-vaccination-her-colleague_23-2148880498.jpg?_wi=2",
|
||||
imageAlt: "Joint pain rehabilitation therapy",
|
||||
},
|
||||
{
|
||||
@@ -115,7 +115,7 @@ export default function ServicesPage() {
|
||||
author: "Recovery Specialists",
|
||||
description: "Specialized rehabilitation following orthopedic surgeries including knee replacements, shoulder repairs, and spinal procedures. Safe, guided recovery with proven techniques to restore strength and function.",
|
||||
tags: ["Recovery", "Post-Op Care", "Guided Support"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-view-client-working-out-trainer-holding-her-arm_23-2148795217.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-view-client-working-out-trainer-holding-her-arm_23-2148795217.jpg?_wi=2",
|
||||
imageAlt: "Post-surgery rehabilitation therapy",
|
||||
},
|
||||
]}
|
||||
@@ -153,7 +153,7 @@ export default function ServicesPage() {
|
||||
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=1"
|
||||
imageAlt="Appointment booking for physiotherapy"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user