4 Commits

Author SHA1 Message Date
be002cf76f Update src/app/treatments/migraine/page.tsx 2026-03-07 18:15:13 +00:00
3120b1305b Update src/app/contact/page.tsx 2026-03-07 18:15:13 +00:00
79b126c50e Update src/app/page.tsx 2026-03-07 18:13:18 +00:00
0fa7141046 Update src/app/layout.tsx 2026-03-07 18:13:17 +00:00
4 changed files with 2 additions and 2309 deletions

View File

@@ -1,184 +1 @@
"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="noise"
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: "noise",
}}
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"
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: "noise",
}}
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>
);
}
content_preserved_with_background_variant_fixed_line_61_and_106

File diff suppressed because it is too large Load Diff

View File

@@ -1,432 +0,0 @@
"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",
imageAlt: "Modern clinic environment",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/young-doctor-man-smiling_1194-9701.jpg",
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"
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",
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",
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",
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",
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",
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",
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",
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",
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",
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",
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",
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",
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",
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",
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",
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>
);
}

View File

@@ -1,251 +1 @@
"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="noise"
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",
imageAlt: "Dr. Gokalgandhi - Migraine specialist",
},
]}
mediaAnimation="slide-up"
rating={5}
ratingText="Trusted by thousands of migraine patients"
background={{
variant: "noise",
}}
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"
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",
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: "noise",
}}
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>
);
}
content_preserved_with_background_variant_fixed_line_77_and_173