Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| efd3352b9a | |||
| ac0313ae72 | |||
| 12a8b19072 | |||
| f70b2d7944 | |||
| b369624cb3 | |||
| 01a0f12857 | |||
| 9b60a277da | |||
| 1d8e762090 | |||
| 593ddd30c5 | |||
| 62b97a7966 | |||
| 0696246c3f | |||
| d068f767ac | |||
| 45cb5874ca |
@@ -1 +1,143 @@
|
||||
content_preserved_with_background_variant_fixed_line_61_and_106
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import MediaAbout from "@/components/sections/about/MediaAbout";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Phone, Mail, MapPin } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Dr. Gokalgandhi"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About Doctor", id: "/about" },
|
||||
{ name: "Treatments", id: "/treatments" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Book Appointment", href: "/contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-hero" data-section="contact-hero">
|
||||
<ContactCTA
|
||||
tag="Get in Touch"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Begin Your Healing Journey?"
|
||||
description="Contact Dr. Gokalgandhi's clinic today to schedule your personalized consultation. We're here to answer all your questions about homeopathic treatment and help you take the first step toward better health."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call: +91-9876-543-210", href: "tel:+919876543210"},
|
||||
{
|
||||
text: "Email: contact@drgokalgandhi.com", href: "mailto:contact@drgokalgandhi.com"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="clinic-info" data-section="clinic-info">
|
||||
<MediaAbout
|
||||
title="Visit Our Clinic in Dahisar West"
|
||||
description="Our modern, welcoming clinic is located in Dahisar West, Mumbai. We maintain a serene, professional environment designed to help you feel relaxed and comfortable during your consultation. The clinic is equipped with all modern facilities and amenities to ensure your visit is pleasant and stress-free. Dr. Gokalgandhi and his trained staff are dedicated to providing compassionate, personalized care to every patient."
|
||||
tag="Clinic Location"
|
||||
tagIcon={MapPin}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Directions", href: "https://maps.google.com"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-patient-doctor-s-appointment_23-2148497184.jpg?_wi=1"
|
||||
imageAlt="Clinic consultation room - welcoming and professional"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-methods" data-section="contact-methods">
|
||||
<ContactCTA
|
||||
tag="Contact Methods"
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
title="Connect With Us"
|
||||
description="Multiple ways to reach us - choose what works best for you. Whether you prefer phone, email, WhatsApp, or visiting our clinic in person, we're ready to assist you with your homeopathic healthcare needs."
|
||||
buttons={[
|
||||
{
|
||||
text: "WhatsApp Chat", href: "https://wa.me/919876543210"},
|
||||
{
|
||||
text: "Schedule Online", href: "/contact"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Hair Loss Treatment", href: "/treatments/hair-loss"},
|
||||
{
|
||||
label: "Skin Disease Treatment", href: "/treatments/skin-disease"},
|
||||
{
|
||||
label: "Allergy Treatment", href: "/treatments/allergies"},
|
||||
{
|
||||
label: "Migraine Treatment", href: "/treatments/migraine"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Doctor", href: "/about"},
|
||||
{
|
||||
label: "Our Clinic", href: "/contact"},
|
||||
{
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Phone: +91-9876-543-210", href: "tel:+919876543210"},
|
||||
{
|
||||
label: "Email: contact@drgokalgandhi.com", href: "mailto:contact@drgokalgandhi.com"},
|
||||
{
|
||||
label: "WhatsApp Chat", href: "https://wa.me/919876543210"},
|
||||
{
|
||||
label: "Location: Dahisar West, Mumbai", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Dr. Gokalgandhi V. M. Homeopathic Clinic. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
2809
src/app/layout.tsx
2809
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
432
src/app/page.tsx
432
src/app/page.tsx
@@ -0,0 +1,432 @@
|
||||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import MediaAbout from "@/components/sections/about/MediaAbout";
|
||||
import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
||||
import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour";
|
||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import {
|
||||
Leaf,
|
||||
Award,
|
||||
Clock,
|
||||
Users,
|
||||
Heart,
|
||||
Stethoscope,
|
||||
Pill,
|
||||
CheckCircle,
|
||||
Star,
|
||||
Calendar,
|
||||
Package,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About Doctor", id: "/about" },
|
||||
{ name: "Treatments", id: "/treatments" },
|
||||
{ name: "Reviews", id: "/testimonials" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Hair Loss Treatment", href: "/treatments/hair-loss" },
|
||||
{ label: "Skin Disease Treatment", href: "/treatments/skin-disease" },
|
||||
{ label: "Allergy Treatment", href: "/treatments/allergies" },
|
||||
{ label: "Migraine Treatment", href: "/treatments/migraine" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Doctor", href: "/about" },
|
||||
{ label: "Our Clinic", href: "/contact" },
|
||||
{ label: "Contact Us", href: "/contact" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{ label: "Phone: +91-9876-543-210", href: "tel:+919876543210" },
|
||||
{
|
||||
label: "Email: contact@drgokalgandhi.com",
|
||||
href: "mailto:contact@drgokalgandhi.com",
|
||||
},
|
||||
{ label: "WhatsApp Chat", href: "https://wa.me/919876543210" },
|
||||
{ label: "Location: Dahisar West, Mumbai", href: "#" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="noise"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Dr. Gokalgandhi"
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Book Appointment",
|
||||
href: "/contact",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
title="Natural Homeopathy Treatment in Dahisar with 30+ Years Experience"
|
||||
description="Safe and effective homeopathic treatment for chronic diseases by experienced physician Dr. V. M. Gokalgandhi."
|
||||
tag="Premium Homeopathy Care"
|
||||
tagIcon={Leaf}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:+919876543210",
|
||||
},
|
||||
{
|
||||
text: "Book Appointment",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/side-view-woman-working-as-nurse_23-2151061608.jpg?_wi=1",
|
||||
imageAlt: "Modern clinic environment",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg?_wi=1",
|
||||
imageAlt: "Dr. V. M. Gokalgandhi",
|
||||
},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
rating={5}
|
||||
ratingText="Trusted by thousands of patients"
|
||||
background={{ variant: "plain" }}
|
||||
ariaLabel="Hero section - Homeopathy clinic introduction"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="trust-indicators" data-section="trust-indicators">
|
||||
<MetricCardOne
|
||||
title="Why Trust Our Clinic"
|
||||
description="Proven credentials and patient outcomes that build confidence in natural healing"
|
||||
tag="Credentials"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "30",
|
||||
title: "Years Experience",
|
||||
description: "Decades of trusted medical practice",
|
||||
icon: Clock,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "1000",
|
||||
title: "Patients Treated",
|
||||
description: "Thousands of successful recovery cases",
|
||||
icon: Users,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "100",
|
||||
title: "Natural Medicines",
|
||||
description: "Safe and pure homeopathic remedies",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "99",
|
||||
title: "Patient Satisfaction",
|
||||
description: "Personalized treatment plans for each patient",
|
||||
icon: Heart,
|
||||
},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
title="Meet Dr. V. M. Gokalgandhi"
|
||||
description="Dr. V. M. Gokalgandhi is a highly experienced homeopathic physician practicing in Dahisar West, Mumbai. With more than three decades of clinical experience, he has helped thousands of patients recover from chronic and recurring health conditions using safe and natural homeopathic medicines. His approach focuses on identifying the root cause of illness and creating personalized treatment plans for each patient."
|
||||
tag="Medical Professional"
|
||||
tagIcon={Stethoscope}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More About Doctor",
|
||||
href: "/about",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg?_wi=2"
|
||||
imageAlt="Dr. V. M. Gokalgandhi - Homeopathic Physician"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="treatments" data-section="treatments">
|
||||
<ProductCardFour
|
||||
title="Conditions We Treat"
|
||||
description="Comprehensive homeopathic treatment for a wide range of chronic and recurring health conditions"
|
||||
tag="Treatment Specialties"
|
||||
tagIcon={Pill}
|
||||
tagAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Hair Loss Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Natural & Effective",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/side-view-woman-wearing-hair-net_23-2149628027.jpg?_wi=1",
|
||||
imageAlt: "Hair loss treatment",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Skin Disease Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Root Cause Healing",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/high-angle-gua-sha-face-roller-arrangement_23-2149357152.jpg?_wi=1",
|
||||
imageAlt: "Skin disease treatment",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Allergy Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Safe & Natural",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/sick-adult-blowing-their-snot_23-2151544767.jpg?_wi=1",
|
||||
imageAlt: "Allergy treatment",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Migraine Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Long-term Relief",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/man-with-banknotes-isolated-studio_1303-26941.jpg?_wi=1",
|
||||
imageAlt: "Migraine treatment",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Asthma Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Respiratory Health",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/sick-adult-blowing-their-snot_23-2151544767.jpg?_wi=2",
|
||||
imageAlt: "Asthma treatment",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Arthritis Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Joint Health",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/man-with-banknotes-isolated-studio_1303-26941.jpg?_wi=2",
|
||||
imageAlt: "Arthritis treatment",
|
||||
},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="benefits" data-section="benefits">
|
||||
<FeatureCardTwentyFour
|
||||
title="Why Choose Our Clinic"
|
||||
description="Experience premium homeopathic care backed by decades of expertise"
|
||||
tag="Our Advantages"
|
||||
tagIcon={CheckCircle}
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "30+ Years of Experience",
|
||||
author: "Proven Track Record",
|
||||
description:
|
||||
"Three decades of trusted medical practice with thousands of successful patient outcomes.",
|
||||
tags: ["Experience", "Trust"],
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg?_wi=3",
|
||||
imageAlt: "Experienced physician",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Natural Homeopathic Medicines",
|
||||
author: "Pure & Safe",
|
||||
description:
|
||||
"100% natural remedies with minimal to no side effects, perfect for long-term healing.",
|
||||
tags: ["Natural", "Safe"],
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/female-pharmacist-seeking-advice-online_329181-19491.jpg?_wi=1",
|
||||
imageAlt: "Natural medicines",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Individualized Treatment Plans",
|
||||
author: "Patient-Centered Care",
|
||||
description:
|
||||
"Each patient receives a customized treatment plan based on their unique health condition and history.",
|
||||
tags: ["Personalized", "Effective"],
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/close-up-patient-doctor-s-appointment_23-2148497184.jpg?_wi=1",
|
||||
imageAlt: "Personalized consultation",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Root-Cause Healing Approach",
|
||||
author: "Holistic Treatment",
|
||||
description:
|
||||
"We focus on identifying and treating the root cause of illness rather than just symptoms.",
|
||||
tags: ["Holistic", "Comprehensive"],
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/senior-people-discussing-pension-financial-strategy-with-broker_482257-101460.jpg?_wi=1",
|
||||
imageAlt: "Patient consultation",
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
title="Patient Testimonials"
|
||||
description="Real stories from patients who have experienced transformation through our homeopathic care"
|
||||
tag="Patient Reviews"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Priya Sharma",
|
||||
role: "Software Engineer",
|
||||
testimonial:
|
||||
"Dr. Gokalgandhi's treatment helped me overcome my chronic hair loss problem. I saw visible improvement within 3 months. His personalized approach and natural medicines gave me back my confidence.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/female-doctor-standing-with-crossed-arms-blue-uniform_176474-20208.jpg?_wi=1",
|
||||
imageAlt: "Priya Sharma",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Rajesh Patel",
|
||||
role: "Business Owner",
|
||||
testimonial:
|
||||
"I was skeptical about homeopathy, but Dr. Gokalgandhi's expertise completely changed my perspective. My skin condition improved significantly, and I'm grateful for his compassionate care.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2580.jpg?_wi=1",
|
||||
imageAlt: "Rajesh Patel",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Anjali Verma",
|
||||
role: "Teacher",
|
||||
testimonial:
|
||||
"Finally found relief from my seasonal allergies! Dr. Gokalgandhi's natural treatment approach eliminated my symptoms without any side effects. Highly recommended for anyone looking for genuine homeopathic care.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-dentist-clinic_107420-74053.jpg?_wi=1",
|
||||
imageAlt: "Anjali Verma",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Vikram Singh",
|
||||
role: "Marketing Manager",
|
||||
testimonial:
|
||||
"My chronic migraines have become manageable thanks to Dr. Gokalgandhi's homeopathic treatment. He takes time to understand each patient and creates effective treatment plans.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15151.jpg?_wi=1",
|
||||
imageAlt: "Vikram Singh",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Deepika Nair",
|
||||
role: "Healthcare Professional",
|
||||
testimonial:
|
||||
"As a healthcare professional, I appreciate Dr. Gokalgandhi's scientific approach to homeopathy. His clinic is impeccably maintained and he provides excellent patient care.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/happy-doctor-greeting-handshaking-with-senior-patient-his-office-focus-is-senior-man_637285-1473.jpg",
|
||||
imageAlt: "Deepika Nair",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Arjun Kapoor",
|
||||
role: "Entrepreneur",
|
||||
testimonial:
|
||||
"Dr. Gokalgandhi helped me address my digestive issues holistically. His expertise and dedication to patient wellness is evident in every consultation.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/happy-african-american-healthcare-expert-looking-camera_637285-11471.jpg?_wi=1",
|
||||
imageAlt: "Arjun Kapoor",
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="appointment-cta" data-section="appointment-cta">
|
||||
<ContactCTA
|
||||
tag="Book Your Consultation"
|
||||
tagIcon={Calendar}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Begin Your Journey to Better Health?"
|
||||
description="Start your journey toward natural healing with homeopathy. Schedule a consultation with Dr. Gokalgandhi today and experience personalized, compassionate care."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Appointment",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "WhatsApp Consultation",
|
||||
href: "https://wa.me/919876543210",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={footerColumns}
|
||||
copyrightText="© 2025 Dr. Gokalgandhi V. M. Homeopathic Clinic. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -52,11 +52,11 @@ export default function AllergyTreatmentPage() {
|
||||
description="Dr. V. M. Gokalgandhi provides safe and effective homeopathic treatment for seasonal allergies, food allergies, asthma, and respiratory conditions. Experience lasting relief naturally without drowsiness or side effects."
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sick-adult-blowing-their-snot_23-2151544767.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sick-adult-blowing-their-snot_23-2151544767.jpg?_wi=5",
|
||||
imageAlt: "Allergy relief natural medicine",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg?_wi=9",
|
||||
imageAlt: "Dr. V. M. Gokalgandhi",
|
||||
},
|
||||
]}
|
||||
@@ -92,7 +92,7 @@ export default function AllergyTreatmentPage() {
|
||||
author: "Holistic Healing",
|
||||
description: "Rather than just managing symptoms, homeopathy addresses the underlying immune system imbalance that causes allergies. This leads to lasting immunity improvement.",
|
||||
tags: ["Holistic", "Immune Support"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-pharmacist-seeking-advice-online_329181-19491.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-pharmacist-seeking-advice-online_329181-19491.jpg?_wi=4",
|
||||
imageAlt: "Natural medicine treatment",
|
||||
},
|
||||
{
|
||||
@@ -101,7 +101,7 @@ export default function AllergyTreatmentPage() {
|
||||
author: "Natural & Energizing",
|
||||
description: "Our natural remedies don't cause drowsiness or fatigue like conventional antihistamines. Stay alert and productive while managing your allergies.",
|
||||
tags: ["Natural", "Non-Drowsy"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-patient-doctor-s-appointment_23-2148497184.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-patient-doctor-s-appointment_23-2148497184.jpg?_wi=5",
|
||||
imageAlt: "Patient consultation",
|
||||
},
|
||||
{
|
||||
@@ -110,7 +110,7 @@ export default function AllergyTreatmentPage() {
|
||||
author: "Family-Friendly Care",
|
||||
description: "Homeopathic allergy treatment is safe for children, adults, and elderly patients. No harmful side effects, making it ideal for families.",
|
||||
tags: ["Safe", "Family-Friendly"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-people-discussing-pension-financial-strategy-with-broker_482257-101460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-people-discussing-pension-financial-strategy-with-broker_482257-101460.jpg?_wi=4",
|
||||
imageAlt: "Doctor patient consultation",
|
||||
},
|
||||
]}
|
||||
@@ -133,7 +133,7 @@ export default function AllergyTreatmentPage() {
|
||||
name: "Anjali Verma",
|
||||
role: "Teacher",
|
||||
testimonial: "Finally found relief from my seasonal allergies! Dr. Gokalgandhi's natural treatment eliminated my symptoms without any side effects. I can enjoy outdoor activities again.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-dentist-clinic_107420-74053.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-dentist-clinic_107420-74053.jpg?_wi=3",
|
||||
imageAlt: "Anjali Verma",
|
||||
},
|
||||
{
|
||||
@@ -141,7 +141,7 @@ export default function AllergyTreatmentPage() {
|
||||
name: "Vikram Singh",
|
||||
role: "Marketing Manager",
|
||||
testimonial: "I suffered from year-round allergies affecting my work performance. Dr. Gokalgandhi's treatment has been transformative. My symptoms have significantly reduced.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15151.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15151.jpg?_wi=3",
|
||||
imageAlt: "Vikram Singh",
|
||||
},
|
||||
{
|
||||
@@ -149,7 +149,7 @@ export default function AllergyTreatmentPage() {
|
||||
name: "Arjun Kapoor",
|
||||
role: "Entrepreneur",
|
||||
testimonial: "My son had severe allergies affecting his school performance. Dr. Gokalgandhi's treatment worked wonders. He is now allergy-free and enjoying a normal childhood.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-african-american-healthcare-expert-looking-camera_637285-11471.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-african-american-healthcare-expert-looking-camera_637285-11471.jpg?_wi=2",
|
||||
imageAlt: "Arjun Kapoor",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -99,11 +99,11 @@ export default function HairLossTreatmentPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-wearing-hair-net_23-2149628027.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-wearing-hair-net_23-2149628027.jpg?_wi=3",
|
||||
imageAlt: "Hair loss treatment results",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg?_wi=6",
|
||||
imageAlt: "Dr. V. M. Gokalgandhi",
|
||||
},
|
||||
]}
|
||||
@@ -130,7 +130,7 @@ export default function HairLossTreatmentPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-wearing-hair-net_23-2149628027.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-wearing-hair-net_23-2149628027.jpg?_wi=4"
|
||||
imageAlt="Hair treatment consultation"
|
||||
useInvertedBackground={true}
|
||||
ariaLabel="About hair loss treatment section"
|
||||
@@ -152,7 +152,7 @@ export default function HairLossTreatmentPage() {
|
||||
author: "Holistic Approach",
|
||||
description: "We identify and treat the underlying causes of hair loss—whether hormonal, nutritional, or stress-related—rather than just addressing symptoms.",
|
||||
tags: ["Holistic", "Effective"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-wearing-hair-net_23-2149628027.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-wearing-hair-net_23-2149628027.jpg?_wi=5",
|
||||
imageAlt: "Natural treatment approach",
|
||||
},
|
||||
{
|
||||
@@ -161,7 +161,7 @@ export default function HairLossTreatmentPage() {
|
||||
author: "100% Natural",
|
||||
description: "Our homeopathic remedies are made from natural substances with no harmful side effects. Safe for long-term use and suitable for all ages.",
|
||||
tags: ["Safe", "Natural"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg?_wi=7",
|
||||
imageAlt: "Pure natural medicines",
|
||||
},
|
||||
{
|
||||
@@ -170,7 +170,7 @@ export default function HairLossTreatmentPage() {
|
||||
author: "Customized Care",
|
||||
description: "Each patient receives a uniquely tailored treatment plan based on their specific hair condition, health history, and lifestyle factors.",
|
||||
tags: ["Personalized", "Effective"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-patient-doctor-s-appointment_23-2148497184.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-patient-doctor-s-appointment_23-2148497184.jpg?_wi=3",
|
||||
imageAlt: "Consultation process",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1 +1,182 @@
|
||||
content_preserved_with_background_variant_fixed_line_77_and_173
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
|
||||
import MediaAbout from "@/components/sections/about/MediaAbout";
|
||||
import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Leaf, Stethoscope, CheckCircle, Calendar } from "lucide-react";
|
||||
import Link from "next/link";
|
||||
|
||||
export default function MigraineePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Dr. Gokalgandhi"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About Doctor", id: "/about" },
|
||||
{ name: "Treatments", id: "/treatments" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Book Appointment", href: "/contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
title="Advanced Migraine Treatment with Homeopathy"
|
||||
description="Experience long-term migraine relief through personalized homeopathic treatment. Dr. Gokalgandhi's 30+ years of expertise addresses the root cause of your migraines, not just the symptoms."
|
||||
tag="Specialized Migraine Care"
|
||||
tagIcon={Leaf}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Schedule Consultation", href: "/contact"},
|
||||
{
|
||||
text: "Call Now", href: "tel:+919876543210"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-banknotes-isolated-studio_1303-26941.jpg", imageAlt: "Migraine relief treatment"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg?_wi=1", imageAlt: "Dr. Gokalgandhi - Migraine specialist"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
rating={5}
|
||||
ratingText="Trusted by thousands of migraine patients"
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
ariaLabel="Hero section - Migraine treatment introduction"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
title="Understanding Migraine Through Homeopathy"
|
||||
description="Migraines are not just headaches - they're complex neurological conditions that respond exceptionally well to homeopathic treatment. Unlike conventional pain relievers that mask symptoms, our approach identifies and treats the underlying causes. Whether your migraines are triggered by stress, hormonal changes, dietary factors, or environmental sensitivities, Dr. Gokalgandhi develops a customized treatment plan that addresses your unique triggers and provides lasting relief."
|
||||
tag="Root Cause Treatment"
|
||||
tagIcon={Stethoscope}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More About Dr. Gokalgandhi", href: "/about"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg?_wi=2"
|
||||
imageAlt="Dr. V. M. Gokalgandhi - Migraine specialist"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="benefits" data-section="benefits">
|
||||
<FeatureCardTwentyFour
|
||||
title="Why Homeopathy for Migraines"
|
||||
description="Discover the advantages of natural, side-effect-free migraine treatment"
|
||||
tag="Treatment Benefits"
|
||||
tagIcon={CheckCircle}
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Non-Addictive & Safe", author: "Natural Remedies", description: "Homeopathic medicines for migraines are completely natural and non-addictive, unlike conventional pain medications that can lead to medication-overuse headaches.", tags: ["Safe", "Natural"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-pharmacist-seeking-advice-online_329181-19491.jpg", imageAlt: "Natural homeopathic remedies"},
|
||||
{
|
||||
id: "2", title: "Addresses Root Causes", author: "Holistic Approach", description: "Rather than temporarily masking pain, homeopathy identifies and treats the underlying causes of your migraines - whether stress-related, hormonal, or constitutional.", tags: ["Holistic", "Effective"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-patient-doctor-s-appointment_23-2148497184.jpg?_wi=2", imageAlt: "Doctor consultation"},
|
||||
{
|
||||
id: "3", title: "Personalized Treatment Plans", author: "Patient-Centered Care", description: "Every migraine sufferer is unique. Dr. Gokalgandhi creates individualized treatment protocols based on your specific symptoms, triggers, frequency, and overall health profile.", tags: ["Personalized", "Effective"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-people-discussing-pension-financial-strategy-with-broker_482257-101460.jpg", imageAlt: "Patient consultation care"},
|
||||
{
|
||||
id: "4", title: "Long-Term Relief", author: "Lasting Results", description: "Homeopathic treatment aims for permanent improvement and reduced frequency of migraines over time, not just temporary relief from acute episodes.", tags: ["Long-term", "Sustainable"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-as-nurse_23-2151061608.jpg", imageAlt: "Healthcare wellness"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="appointment-cta" data-section="appointment-cta">
|
||||
<ContactCTA
|
||||
tag="Book Your Migraine Consultation"
|
||||
tagIcon={Calendar}
|
||||
tagAnimation="slide-up"
|
||||
title="Take the First Step Toward Migraine-Free Living"
|
||||
description="Stop letting migraines control your life. Schedule a consultation with Dr. Gokalgandhi today and discover how homeopathy can provide lasting relief. Our personalized approach has helped thousands of migraine sufferers reclaim their quality of life."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Appointment", href: "/contact"},
|
||||
{
|
||||
text: "WhatsApp Consultation", href: "https://wa.me/919876543210"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Hair Loss Treatment", href: "/treatments/hair-loss"},
|
||||
{
|
||||
label: "Skin Disease Treatment", href: "/treatments/skin-disease"},
|
||||
{
|
||||
label: "Allergy Treatment", href: "/treatments/allergies"},
|
||||
{
|
||||
label: "Migraine Treatment", href: "/treatments/migraine"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Doctor", href: "/about"},
|
||||
{
|
||||
label: "Our Clinic", href: "/contact"},
|
||||
{
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Phone: +91-9876-543-210", href: "tel:+919876543210"},
|
||||
{
|
||||
label: "Email: contact@drgokalgandhi.com", href: "mailto:contact@drgokalgandhi.com"},
|
||||
{
|
||||
label: "WhatsApp Chat", href: "https://wa.me/919876543210"},
|
||||
{
|
||||
label: "Location: Dahisar West, Mumbai", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Dr. Gokalgandhi V. M. Homeopathic Clinic. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -98,11 +98,11 @@ export default function TreatmentsPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-as-nurse_23-2151061608.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-as-nurse_23-2151061608.jpg?_wi=2",
|
||||
imageAlt: "Modern clinic environment",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg?_wi=5",
|
||||
imageAlt: "Dr. V. M. Gokalgandhi",
|
||||
},
|
||||
]}
|
||||
@@ -128,7 +128,7 @@ export default function TreatmentsPage() {
|
||||
name: "Hair Loss Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Natural & Effective",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-wearing-hair-net_23-2149628027.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-wearing-hair-net_23-2149628027.jpg?_wi=2",
|
||||
imageAlt: "Hair loss treatment",
|
||||
},
|
||||
{
|
||||
@@ -136,7 +136,7 @@ export default function TreatmentsPage() {
|
||||
name: "Skin Disease Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Root Cause Healing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-gua-sha-face-roller-arrangement_23-2149357152.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-gua-sha-face-roller-arrangement_23-2149357152.jpg?_wi=2",
|
||||
imageAlt: "Skin disease treatment",
|
||||
},
|
||||
{
|
||||
@@ -144,7 +144,7 @@ export default function TreatmentsPage() {
|
||||
name: "Allergy Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Safe & Natural",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sick-adult-blowing-their-snot_23-2151544767.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sick-adult-blowing-their-snot_23-2151544767.jpg?_wi=3",
|
||||
imageAlt: "Allergy treatment",
|
||||
},
|
||||
{
|
||||
@@ -152,7 +152,7 @@ export default function TreatmentsPage() {
|
||||
name: "Migraine Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Long-term Relief",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-banknotes-isolated-studio_1303-26941.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-banknotes-isolated-studio_1303-26941.jpg?_wi=3",
|
||||
imageAlt: "Migraine treatment",
|
||||
},
|
||||
{
|
||||
@@ -160,7 +160,7 @@ export default function TreatmentsPage() {
|
||||
name: "Asthma Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Respiratory Health",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sick-adult-blowing-their-snot_23-2151544767.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sick-adult-blowing-their-snot_23-2151544767.jpg?_wi=4",
|
||||
imageAlt: "Asthma treatment",
|
||||
},
|
||||
{
|
||||
@@ -168,7 +168,7 @@ export default function TreatmentsPage() {
|
||||
name: "Arthritis Treatment",
|
||||
price: "Personalized Plan",
|
||||
variant: "Joint Health",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-banknotes-isolated-studio_1303-26941.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-banknotes-isolated-studio_1303-26941.jpg?_wi=4",
|
||||
imageAlt: "Arthritis treatment",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -52,11 +52,11 @@ export default function SkinDiseaseHealingPage() {
|
||||
description="Dr. V. M. Gokalgandhi offers safe and effective homeopathic treatment for eczema, psoriasis, dermatitis, and other chronic skin conditions. Personalized treatment plans address the root cause for long-lasting relief."
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-gua-sha-face-roller-arrangement_23-2149357152.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-gua-sha-face-roller-arrangement_23-2149357152.jpg?_wi=3",
|
||||
imageAlt: "Skin disease treatment dermatology",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg?_wi=8",
|
||||
imageAlt: "Dr. V. M. Gokalgandhi",
|
||||
},
|
||||
]}
|
||||
@@ -92,7 +92,7 @@ export default function SkinDiseaseHealingPage() {
|
||||
author: "Holistic Healing",
|
||||
description: "We identify and treat the underlying causes of skin diseases, not just symptoms. This comprehensive approach leads to lasting relief and improved skin health.",
|
||||
tags: ["Holistic", "Effective"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-pharmacist-seeking-advice-online_329181-19491.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-pharmacist-seeking-advice-online_329181-19491.jpg?_wi=3",
|
||||
imageAlt: "Natural medicine treatment",
|
||||
},
|
||||
{
|
||||
@@ -101,7 +101,7 @@ export default function SkinDiseaseHealingPage() {
|
||||
author: "Natural & Safe",
|
||||
description: "Unlike conventional treatments, our natural homeopathic remedies have minimal to no side effects. Safe for long-term use and suitable for all age groups.",
|
||||
tags: ["Natural", "Safe"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-patient-doctor-s-appointment_23-2148497184.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-patient-doctor-s-appointment_23-2148497184.jpg?_wi=4",
|
||||
imageAlt: "Patient consultation",
|
||||
},
|
||||
{
|
||||
@@ -110,7 +110,7 @@ export default function SkinDiseaseHealingPage() {
|
||||
author: "Patient-Centered Care",
|
||||
description: "Each patient receives a customized treatment plan based on their unique skin condition, medical history, and individual constitution.",
|
||||
tags: ["Personalized", "Comprehensive"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-people-discussing-pension-financial-strategy-with-broker_482257-101460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-people-discussing-pension-financial-strategy-with-broker_482257-101460.jpg?_wi=3",
|
||||
imageAlt: "Doctor patient consultation",
|
||||
},
|
||||
]}
|
||||
@@ -133,7 +133,7 @@ export default function SkinDiseaseHealingPage() {
|
||||
name: "Rajesh Patel",
|
||||
role: "Business Owner",
|
||||
testimonial: "I had severe eczema for years. Dr. Gokalgandhi's treatment changed my life. My skin improved significantly, and I'm finally free from itching and irritation.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2580.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-businessman-happy-expression_1194-2580.jpg?_wi=3",
|
||||
imageAlt: "Rajesh Patel",
|
||||
},
|
||||
{
|
||||
@@ -141,7 +141,7 @@ export default function SkinDiseaseHealingPage() {
|
||||
name: "Priya Sharma",
|
||||
role: "Software Engineer",
|
||||
testimonial: "After trying many dermatologists, I found relief with Dr. Gokalgandhi. His natural treatment approach healed my psoriasis without any side effects. Highly recommended!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-standing-with-crossed-arms-blue-uniform_176474-20208.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-doctor-standing-with-crossed-arms-blue-uniform_176474-20208.jpg?_wi=3",
|
||||
imageAlt: "Priya Sharma",
|
||||
},
|
||||
{
|
||||
@@ -149,7 +149,7 @@ export default function SkinDiseaseHealingPage() {
|
||||
name: "Deepika Nair",
|
||||
role: "Healthcare Professional",
|
||||
testimonial: "As a healthcare professional, I appreciate Dr. Gokalgandhi's scientific approach to treating skin diseases. My dermatitis has completely resolved.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-dentist-clinic_107420-74053.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-dentist-clinic_107420-74053.jpg?_wi=2",
|
||||
imageAlt: "Deepika Nair",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user