Merge version_1 into main #1
@@ -69,7 +69,7 @@ export default function AboutPage() {
|
||||
title="Our Commitment to Your Health"
|
||||
description="At Good Health Clinic, we are dedicated to providing comprehensive, compassionate, and professional healthcare services. With years of expertise in thyroid disorders, gastrointestinal conditions, and general health management, our team of experienced doctors is committed to your well-being. We believe in combining accurate diagnosis with affordable, patient-centered treatment to ensure every patient receives the care they deserve."
|
||||
tag="About Us"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/team-doctors-standing-corridor_107420-84841.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/team-doctors-standing-corridor_107420-84841.jpg?_wi=3"
|
||||
imageAlt="Good Health Clinic medical team"
|
||||
buttons={[{ text: "Our Services", href: "/services" }]}
|
||||
useInvertedBackground={false}
|
||||
@@ -123,7 +123,7 @@ export default function AboutPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg?_wi=2"
|
||||
imageAlt="Good Health Clinic Footer"
|
||||
logoText="Good Health Clinic"
|
||||
copyrightText="© 2025 Good Health Clinic. All rights reserved."
|
||||
|
||||
@@ -72,7 +72,7 @@ export default function ContactPage() {
|
||||
title="Get In Touch With Us"
|
||||
description="We're here to help you with any questions or concerns. Reach out to Good Health Clinic through any of our convenient contact methods and our friendly staff will assist you promptly."
|
||||
tag="Contact Information"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg?_wi=6"
|
||||
imageAlt="Contact Good Health Clinic"
|
||||
buttons={[
|
||||
{
|
||||
@@ -109,7 +109,7 @@ export default function ContactPage() {
|
||||
{/* Footer Section */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg?_wi=7"
|
||||
imageAlt="Good Health Clinic Footer"
|
||||
logoText="Good Health Clinic"
|
||||
copyrightText="© 2025 Good Health Clinic. All rights reserved."
|
||||
|
||||
@@ -79,14 +79,14 @@ export default function GalleryPage() {
|
||||
id: 1,
|
||||
title: "Modern Waiting Area",
|
||||
description: "Clean, comfortable, and welcoming waiting rooms designed for patient comfort. We maintain the highest standards of hygiene and provide a calm environment for patients.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-medical-staff-working-reception-counter-filling-checkup-report-papers-making-appointments-nurse-receptionist-doing-registration-work-hospital-waiting-room_482257-51640.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-medical-staff-working-reception-counter-filling-checkup-report-papers-making-appointments-nurse-receptionist-doing-registration-work-hospital-waiting-room_482257-51640.jpg?_wi=2",
|
||||
imageAlt: "Modern clinic waiting area",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Advanced Diagnostic Equipment",
|
||||
description: "State-of-the-art medical equipment for accurate diagnosis. Our facility is equipped with modern diagnostic tools including ultrasound, blood testing, and other medical instruments.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-nurse-examining-x-ray_107420-64799.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-nurse-examining-x-ray_107420-64799.jpg?_wi=3",
|
||||
imageAlt: "Medical diagnostic equipment",
|
||||
},
|
||||
{
|
||||
@@ -125,7 +125,7 @@ export default function GalleryPage() {
|
||||
{/* Footer Section */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg?_wi=5"
|
||||
imageAlt="Good Health Clinic Footer"
|
||||
logoText="Good Health Clinic"
|
||||
copyrightText="© 2025 Good Health Clinic. All rights reserved."
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lato } 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 { Lato } 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 lato = Lato({
|
||||
variable: "--font-lato",
|
||||
@@ -20,6 +24,36 @@ const lato = Lato({
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Good Health Clinic - Thyroid & Stomach Treatment in Delhi",
|
||||
description: "Professional healthcare for thyroid disorders, stomach infections, and general health. Expert doctors, modern diagnosis, and patient-friendly treatment.",
|
||||
keywords: "thyroid treatment, stomach infection treatment, medical clinic, general health consultation, healthcare",
|
||||
openGraph: {
|
||||
title: "Good Health Clinic - Your Trusted Healthcare Partner",
|
||||
description: "Quality healthcare and personalized treatment for thyroid problems, stomach infections, and general health issues.",
|
||||
type: "website",
|
||||
siteName: "Good Health Clinic",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/mature-doctor-wearing-face-mask-while-talking-patient-medical-clinic_637285-8985.jpg",
|
||||
alt: "Good Health Clinic - Professional Medical Care",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Good Health Clinic - Your Trusted Healthcare Partner",
|
||||
description: "Quality healthcare and personalized treatment for thyroid problems, stomach infections, and general health issues.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/mature-doctor-wearing-face-mask-while-talking-patient-medical-clinic_637285-8985.jpg",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -28,7 +62,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +76,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -92,11 +92,11 @@ export default function HomePage() {
|
||||
imageAlt: "Professional doctor at Good Health Clinic",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/team-doctors-standing-corridor_107420-84841.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/team-doctors-standing-corridor_107420-84841.jpg?_wi=1",
|
||||
imageAlt: "Medical team at Good Health Clinic",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-medical-staff-working-reception-counter-filling-checkup-report-papers-making-appointments-nurse-receptionist-doing-registration-work-hospital-waiting-room_482257-51640.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-medical-staff-working-reception-counter-filling-checkup-report-papers-making-appointments-nurse-receptionist-doing-registration-work-hospital-waiting-room_482257-51640.jpg?_wi=1",
|
||||
imageAlt: "Modern clinic interior",
|
||||
},
|
||||
]}
|
||||
@@ -111,7 +111,7 @@ export default function HomePage() {
|
||||
title="About Good Health Clinic"
|
||||
description="Good Health Clinic provides quality healthcare and personalized treatment for patients. We focus on accurate diagnosis and patient-friendly treatment for thyroid disorders, stomach infections and other medical conditions. Our clinic believes in genuine diagnosis, affordable treatment, experienced doctors, and patient care and comfort."
|
||||
tag="Our Mission"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/team-doctors-standing-corridor_107420-84841.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/team-doctors-standing-corridor_107420-84841.jpg?_wi=2"
|
||||
imageAlt="Good Health Clinic medical team"
|
||||
buttons={[
|
||||
{
|
||||
@@ -136,28 +136,28 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Thyroid Treatment",
|
||||
description: "Diagnosis and treatment for thyroid disorders including hormone imbalance and thyroid gland problems. Early consultation helps proper treatment planning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-otologist-examining-ear-infection-patient-with-otoscope-covid-19-pandemic-health-specialist-using-otology-instrument-consultation-checkup-visit-appointment_482257-45644.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-otologist-examining-ear-infection-patient-with-otoscope-covid-19-pandemic-health-specialist-using-otology-instrument-consultation-checkup-visit-appointment_482257-45644.jpg?_wi=1",
|
||||
imageAlt: "Thyroid treatment and diagnosis",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Stomach Infection Treatment",
|
||||
description: "Treatment for gastric infection, acidity, digestive issues and food poisoning with expert care and modern diagnostic techniques.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-sitting-sofa-holding-patient-hand_23-2148352067.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-sitting-sofa-holding-patient-hand_23-2148352067.jpg?_wi=1",
|
||||
imageAlt: "Stomach infection treatment",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "General Health Consultation",
|
||||
description: "Comprehensive treatment for fever, weakness, body pain, and infection treatment with professional medical guidance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-medic-sick-patient-attending-health-checkup-visit-cabinet-receiving-prescription-paper-buy-treatment-medication-after-appointment-disease-report-consultation_482257-46469.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-medic-sick-patient-attending-health-checkup-visit-cabinet-receiving-prescription-paper-buy-treatment-medication-after-appointment-disease-report-consultation_482257-46469.jpg?_wi=1",
|
||||
imageAlt: "General health consultation",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Medical Tests & Diagnosis",
|
||||
description: "Advanced blood tests, thyroid tests, and complete health checkups using modern diagnostic equipment.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-nurse-examining-x-ray_107420-64799.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-nurse-examining-x-ray_107420-64799.jpg?_wi=1",
|
||||
imageAlt: "Medical diagnostic equipment",
|
||||
},
|
||||
]}
|
||||
@@ -304,7 +304,7 @@ export default function HomePage() {
|
||||
{/* Footer Section */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg?_wi=1"
|
||||
imageAlt="Good Health Clinic Footer"
|
||||
logoText="Good Health Clinic"
|
||||
copyrightText="© 2025 Good Health Clinic. All rights reserved."
|
||||
|
||||
@@ -71,28 +71,28 @@ export default function ServicesPage() {
|
||||
id: 1,
|
||||
title: "Thyroid Treatment",
|
||||
description: "Diagnosis and treatment for thyroid disorders including hormone imbalance and thyroid gland problems. Early consultation helps proper treatment planning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-otologist-examining-ear-infection-patient-with-otoscope-covid-19-pandemic-health-specialist-using-otology-instrument-consultation-checkup-visit-appointment_482257-45644.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-otologist-examining-ear-infection-patient-with-otoscope-covid-19-pandemic-health-specialist-using-otology-instrument-consultation-checkup-visit-appointment_482257-45644.jpg?_wi=2",
|
||||
imageAlt: "Thyroid treatment and diagnosis",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Stomach Infection Treatment",
|
||||
description: "Treatment for gastric infection, acidity, digestive issues and food poisoning with expert care and modern diagnostic techniques.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-sitting-sofa-holding-patient-hand_23-2148352067.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-sitting-sofa-holding-patient-hand_23-2148352067.jpg?_wi=2",
|
||||
imageAlt: "Stomach infection treatment",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "General Health Consultation",
|
||||
description: "Comprehensive treatment for fever, weakness, body pain, and infection treatment with professional medical guidance.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-medic-sick-patient-attending-health-checkup-visit-cabinet-receiving-prescription-paper-buy-treatment-medication-after-appointment-disease-report-consultation_482257-46469.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-medic-sick-patient-attending-health-checkup-visit-cabinet-receiving-prescription-paper-buy-treatment-medication-after-appointment-disease-report-consultation_482257-46469.jpg?_wi=2",
|
||||
imageAlt: "General health consultation",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Medical Tests & Diagnosis",
|
||||
description: "Advanced blood tests, thyroid tests, and complete health checkups using modern diagnostic equipment.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-nurse-examining-x-ray_107420-64799.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/doctor-nurse-examining-x-ray_107420-64799.jpg?_wi=2",
|
||||
imageAlt: "Medical diagnostic equipment",
|
||||
},
|
||||
]}
|
||||
@@ -159,7 +159,7 @@ export default function ServicesPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg?_wi=3"
|
||||
imageAlt="Good Health Clinic Footer"
|
||||
logoText="Good Health Clinic"
|
||||
copyrightText="© 2025 Good Health Clinic. All rights reserved."
|
||||
|
||||
@@ -156,7 +156,7 @@ export default function TestimonialsPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/composition-with-doctor-s-accesories_23-2147652320.jpg?_wi=4"
|
||||
imageAlt="Good Health Clinic Footer"
|
||||
logoText="Good Health Clinic"
|
||||
copyrightText="© 2025 Good Health Clinic. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user