220 lines
13 KiB
TypeScript
220 lines
13 KiB
TypeScript
"use client";
|
||
|
||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||
import { Stethoscope, Smile, Star, Mail } from 'lucide-react';
|
||
|
||
export default function LuxuryDentistPage() {
|
||
return (
|
||
<ThemeProvider
|
||
defaultButtonVariant="text-stagger"
|
||
defaultTextAnimation="reveal-blur"
|
||
borderRadius="pill"
|
||
contentWidth="smallMedium"
|
||
sizing="mediumLargeSizeMediumTitles"
|
||
background="aurora"
|
||
cardStyle="layered-gradient"
|
||
primaryButtonStyle="primary-glow"
|
||
secondaryButtonStyle="solid"
|
||
headingFontWeight="light"
|
||
>
|
||
<div id="nav" data-section="nav">
|
||
<NavbarLayoutFloatingInline
|
||
brandName="Rajput Clinic"
|
||
navItems={[
|
||
{ name: "Home", id: "hero" },
|
||
{ name: "Services", id: "services" },
|
||
{ name: "About Dr. Rajput", id: "about" },
|
||
{ name: "Contact", id: "contact" }
|
||
]}
|
||
button={{
|
||
text: "Book Appointment", href: "#contact"
|
||
}}
|
||
/>
|
||
</div>
|
||
|
||
<div id="hero" data-section="hero">
|
||
<HeroSplitKpi
|
||
title="DR. Sheru Singh Rajput: Your Trusted Pulmonologist & Chest Specialist in Gwalior"
|
||
description="Dr. Sheru Singh Rajput (MBBS, MD, DNB) offers advanced diagnosis and compassionate care for T.B., Asthma, Allergy, and all chest and respiratory illnesses at Rajput Clinic. Contact us at 099815 75690. Your health is our priority."
|
||
tag="Expert Chest & Lung Care"
|
||
tagIcon={Stethoscope}
|
||
background={{ variant: "glowing-orb" }}
|
||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/doctor-at-desk.jpg"
|
||
imageAlt="Dr. Sheru Singh Rajput, Pulmonologist and Chest Specialist"
|
||
imagePosition="right"
|
||
kpis={[
|
||
{ value: "20+", label: "Years Experience" },
|
||
{ value: "10K+", label: "Patients Treated" },
|
||
{ value: "98%", label: "Recovery Rate" }
|
||
]}
|
||
enableKpiAnimation={true}
|
||
buttons={[
|
||
{ text: "View Our Services", href: "#services" },
|
||
{ text: "Schedule Consultation", href: "#contact" }
|
||
]}
|
||
mediaAnimation="slide-up"
|
||
/>
|
||
</div>
|
||
|
||
<div id="services" data-section="services">
|
||
<ProductCardTwo
|
||
title="Specialized Pulmonary & Chest Care Services at Rajput Clinic"
|
||
description="At Rajput Clinic, we provide comprehensive diagnosis, treatment, and management for a wide range of respiratory conditions, including Pulmonology, Chest Medicine, Critical Care, and more, ensuring optimal lung health."
|
||
tag="Our Expertise"
|
||
tagIcon={Smile}
|
||
textboxLayout="default"
|
||
animationType="slide-up"
|
||
gridVariant="three-columns-all-equal-width"
|
||
useInvertedBackground={true}
|
||
products={[
|
||
{
|
||
id: "1", brand: "Respiratory & Allergy", name: "Asthma, COPD & Allergy Management", price: "By Appointment", rating: 5,
|
||
reviewCount: "500+", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/lungs-illustration.jpg", imageAlt: "Asthma and COPD management, inhaler, allergy testing"
|
||
},
|
||
{
|
||
id: "2", brand: "Infectious Diseases", name: "Tuberculosis & Lung Infections", price: "By Appointment", rating: 5,
|
||
reviewCount: "300+", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/xray-chest.jpg", imageAlt: "X-ray of chest, showing lungs, related to tuberculosis and pneumonia"
|
||
},
|
||
{
|
||
id: "3", brand: "Diagnostic & Procedures", name: "Advanced Pulmonary Diagnostics & Care", price: "By Appointment", rating: 5,
|
||
reviewCount: "400+", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/medical-examination.jpg", imageAlt: "Pulmonary function test equipment, bronchoscopy procedure"
|
||
}
|
||
]}
|
||
buttons={[
|
||
{ text: "Request an Appointment", href: "#contact" }
|
||
]}
|
||
/>
|
||
</div>
|
||
|
||
<div id="about" data-section="about">
|
||
<InlineImageSplitTextAbout
|
||
heading={[
|
||
{ type: "text", content: "DR. Sheru Singh Rajput (MBBS, MD, DNB)" },
|
||
{ type: "text", content: "CHEST SPECIALIST, T.B., ASTHMA, ALLERGY, PULMONOLOGIST छाती एवं श्वास रोग विशेषज्ञ" }
|
||
]}
|
||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/male-doctor-portrait.jpg"
|
||
imageAlt="Professional portrait of Dr. Sheru Singh Rajput, Pulmonologist and Chest Specialist"
|
||
useInvertedBackground={false}
|
||
buttons={[
|
||
{ text: "Our Clinic Philosophy", href: "#features" },
|
||
{ text: "Contact Us", href: "#contact" }
|
||
]}
|
||
/>
|
||
</div>
|
||
|
||
<div id="features" data-section="features">
|
||
<FeatureCardOne
|
||
title="Our Commitment to Your Respiratory Health at Rajput Clinic"
|
||
description="At Rajput Clinic, Dr. Sheru Singh Rajput and his team blend advanced medical science with personalized patient care to ensure accurate diagnosis and effective treatment for all lung conditions."
|
||
tag="Why Choose Rajput Clinic"
|
||
tagIcon={Star}
|
||
textboxLayout="default"
|
||
animationType="slide-up"
|
||
gridVariant="uniform-all-items-equal"
|
||
useInvertedBackground={true}
|
||
features={[
|
||
{
|
||
title: "Advanced Pulmonary Diagnostics", description: "State-of-the-art equipment for precise lung function tests (PFT, FOT), bronchoscopy, thoracoscopy, imaging, and early detection of respiratory diseases.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/medical-equipment.jpg"
|
||
},
|
||
{
|
||
title: "Personalized Treatment Plans", description: "Tailored treatment strategies for Severe Asthma, COPD, T.B., Allergic Airway Diseases, Pneumonia, ILD, Critical Care, and adult vaccination.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/doctor-patient-consult.jpg"
|
||
},
|
||
{
|
||
title: "Compassionate & Holistic Patient Care", description: "A patient-centric approach ensuring comfort, clear communication, and support throughout your healing journey at Rajput Clinic, with focus on overall well-being.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/doctor-comforting-patient.jpg"
|
||
}
|
||
]}
|
||
/>
|
||
</div>
|
||
|
||
<div id="testimonials" data-section="testimonials">
|
||
<TestimonialCardSix
|
||
title="What Our Patients Say About Care at Rajput Clinic"
|
||
description="Hear from individuals who have experienced life-changing improvements in their respiratory health under Dr. Rajput's expert guidance at Rajput Clinic."
|
||
tag="Patient Success Stories"
|
||
textboxLayout="default"
|
||
useInvertedBackground={false}
|
||
animationType="slide-up"
|
||
testimonials={[
|
||
{
|
||
id: "1", name: "Ramesh Sharma", handle: "Delhi Patient", testimonial: "Dr. Rajput's professional care for my chronic asthma has been life-changing. My breathing has improved significantly, and I feel so much better.", imageSrc: "https://api.dicebear.com/7.x/adventurer/svg?seed=Ramesh", imageAlt: "Ramesh Sharma"
|
||
},
|
||
{
|
||
id: "2", name: "Priya Singh", handle: "Business Executive", testimonial: "Finally found a chest specialist who truly understands complex lung conditions. Dr. Rajput's diagnosis and treatment plan were spot on.", imageSrc: "https://api.dicebear.com/7.x/adventurer/svg?seed=Priya", imageAlt: "Priya Singh"
|
||
},
|
||
{
|
||
id: "3", name: "Amit Kumar", handle: "Local Resident", testimonial: "This is the place where genuine care meets medical expertise. My allergy issues are finally under control thanks to Dr. Rajput.", imageSrc: "https://api.dicebear.com/7.x/adventurer/svg?seed=Amit", imageAlt: "Amit Kumar"
|
||
},
|
||
{
|
||
id: "4", name: "Seema Devi", handle: "Long-term Patient", testimonial: "I've been a patient for years. The consistent excellence, warm staff, and effective treatments keep me coming back with confidence.", imageSrc: "https://api.dicebear.com/7.x/adventurer/svg?seed=Seema", imageAlt: "Seema Devi"
|
||
},
|
||
{
|
||
id: "5", name: "Vijay Gupta", handle: "Teacher", testimonial: "Dr. Rajput is knowledgeable and attentive. My respiratory issues are finally under control, and I'm very grateful.", imageSrc: "https://api.dicebear.com/7.x/adventurer/svg?seed=Vijay", imageAlt: "Vijay Gupta"
|
||
},
|
||
{
|
||
id: "6", name: "Anjali Verma", handle: "Healthcare Professional", testimonial: "The clinical precision combined with compassionate care is remarkable. This team truly understands comprehensive pulmonary health.", imageSrc: "https://api.dicebear.com/7.x/adventurer/svg?seed=Anjali", imageAlt: "Anjali Verma"
|
||
}
|
||
]}
|
||
/>
|
||
</div>
|
||
|
||
<div id="contact" data-section="contact">
|
||
<ContactSplit
|
||
tag="Your Health Matters"
|
||
tagIcon={Mail}
|
||
title="Schedule Your Consultation at Rajput Clinic"
|
||
description="Take the first step towards better respiratory health. Contact DR. Sheru Singh Rajput (MBBS, MD, DNB) – CHEST SPECIALIST, PULMONOLOGIST. Call 099815 75690 or visit us at Near SBI ATM, SABZI MANDI, anand nagar chaurahe, bahodapur, Transport Nagar, Gwalior, Madhya Pradesh 474012."
|
||
background={{ variant: "plain" }}
|
||
useInvertedBackground={true}
|
||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/clinic-reception.jpg"
|
||
imageAlt="Rajput Clinic reception area"
|
||
mediaPosition="right"
|
||
mediaAnimation="slide-up"
|
||
inputPlaceholder="Your Email Address"
|
||
buttonText="Send Inquiry"
|
||
termsText="We respect your privacy. Your health data is handled with utmost confidentiality."
|
||
/>
|
||
</div>
|
||
|
||
<div id="footer" data-section="footer">
|
||
<FooterBase
|
||
logoText="Rajput Clinic"
|
||
copyrightText="© 2025 Rajput Clinic | DR. Sheru Singh Rajput - Pulmonologist, Chest Specialist"
|
||
columns={[
|
||
{
|
||
title: "Services", items: [
|
||
{ label: "Asthma Management", href: "#services" },
|
||
{ label: "T.B. Treatment", href: "#services" },
|
||
{ label: "Allergy Care", href: "#services" },
|
||
{ label: "Lung Health Check-ups", href: "#services" }
|
||
]
|
||
},
|
||
{
|
||
title: "Clinic", items: [
|
||
{ label: "About Dr. Rajput", href: "#about" },
|
||
{ label: "Our Approach", href: "#features" },
|
||
{ label: "Patient Testimonials", href: "#testimonials" },
|
||
{ label: "Contact Us", href: "#contact" }
|
||
]
|
||
},
|
||
{
|
||
title: "Connect", items: [
|
||
{ label: "Rajput Clinic Location", href: "#contact" },
|
||
{ label: "Call Us", href: "tel:+919981575690" },
|
||
{ label: "Email Us", href: "mailto:info@rajputclinic.com" },
|
||
{ label: "Book Online", href: "#contact" }
|
||
]
|
||
}
|
||
]}
|
||
/>
|
||
</div>
|
||
</ThemeProvider>
|
||
);
|
||
} |