Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ae415811c8 | |||
| 3757fe58cf | |||
| db62b41cb6 | |||
| f76599ff01 | |||
| 1c09c3332c |
@@ -19,8 +19,7 @@ export default function AboutPage() {
|
|||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Clinic",
|
title: "Clinic", items: [
|
||||||
items: [
|
|
||||||
{ label: "About Dr. Kumar", href: "/about" },
|
{ label: "About Dr. Kumar", href: "/about" },
|
||||||
{ label: "Our Services", href: "/treatments" },
|
{ label: "Our Services", href: "/treatments" },
|
||||||
{ label: "Before & After", href: "/results" },
|
{ label: "Before & After", href: "/results" },
|
||||||
@@ -28,8 +27,7 @@ export default function AboutPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
||||||
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
||||||
{ label: "Book Appointment", href: "/contact" },
|
{ label: "Book Appointment", href: "/contact" },
|
||||||
@@ -37,8 +35,7 @@ export default function AboutPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Location",
|
title: "Location", items: [
|
||||||
items: [
|
|
||||||
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
||||||
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
||||||
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
||||||
@@ -97,19 +94,13 @@ export default function AboutPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: BookOpen,
|
icon: BookOpen,
|
||||||
title: "Advanced Training",
|
title: "Advanced Training", description: "Specialized dermatology training with focus on laser treatments, aesthetic procedures, and skin disorder management."},
|
||||||
description: "Specialized dermatology training with focus on laser treatments, aesthetic procedures, and skin disorder management.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: AwardIcon,
|
icon: AwardIcon,
|
||||||
title: "Award Winning",
|
title: "Award Winning", description: "Recognized for excellence in dermatology with 4.9★ patient ratings and consistent positive feedback."},
|
||||||
description: "Recognized for excellence in dermatology with 4.9★ patient ratings and consistent positive feedback.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Award,
|
icon: Award,
|
||||||
title: "Patient Centered",
|
title: "Patient Centered", description: "Every treatment plan is customized based on individual skin type, concerns, and personal goals."},
|
||||||
description: "Every treatment plan is customized based on individual skin type, concerns, and personal goals.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -126,20 +117,11 @@ export default function AboutPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "What qualifications does Dr. S Kumar have?", content: "Dr. S Kumar is a certified dermatologist with specialized training in laser treatments, aesthetic procedures, and comprehensive skin care. He stays updated with the latest dermatological advances and maintains the highest standards of medical practice."},
|
||||||
title: "What qualifications does Dr. S Kumar have?",
|
|
||||||
content: "Dr. S Kumar is a certified dermatologist with specialized training in laser treatments, aesthetic procedures, and comprehensive skin care. He stays updated with the latest dermatological advances and maintains the highest standards of medical practice.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "How long has Dr. S Kumar been practicing dermatology?", content: "With years of experience in clinical dermatology, Dr. S Kumar has successfully treated thousands of patients for various skin conditions. His practice is built on a foundation of expertise, compassion, and proven treatment outcomes."},
|
||||||
title: "How long has Dr. S Kumar been practicing dermatology?",
|
|
||||||
content: "With years of experience in clinical dermatology, Dr. S Kumar has successfully treated thousands of patients for various skin conditions. His practice is built on a foundation of expertise, compassion, and proven treatment outcomes.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "What makes Dr. S Kumar's clinic different?", content: "Our clinic combines personalized patient care with state-of-the-art laser technology and modern dermatological techniques. We prioritize patient safety, comfort, and achieving natural-looking results that enhance confidence."},
|
||||||
title: "What makes Dr. S Kumar's clinic different?",
|
|
||||||
content: "Our clinic combines personalized patient care with state-of-the-art laser technology and modern dermatological techniques. We prioritize patient safety, comfort, and achieving natural-looking results that enhance confidence.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -156,4 +138,4 @@ export default function AboutPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,16 +10,15 @@ import Link from 'next/link';
|
|||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Treatments", id: "treatments" },
|
{ name: "Treatments", id: "/treatments" },
|
||||||
{ name: "Results", id: "results" },
|
{ name: "Results", id: "/results" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Clinic",
|
title: "Clinic", items: [
|
||||||
items: [
|
|
||||||
{ label: "About Dr. Kumar", href: "/about" },
|
{ label: "About Dr. Kumar", href: "/about" },
|
||||||
{ label: "Our Services", href: "/treatments" },
|
{ label: "Our Services", href: "/treatments" },
|
||||||
{ label: "Before & After", href: "/results" },
|
{ label: "Before & After", href: "/results" },
|
||||||
@@ -27,8 +26,7 @@ export default function ContactPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
||||||
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
||||||
{ label: "Book Appointment", href: "/contact" },
|
{ label: "Book Appointment", href: "/contact" },
|
||||||
@@ -36,8 +34,7 @@ export default function ContactPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Location",
|
title: "Location", items: [
|
||||||
items: [
|
|
||||||
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
||||||
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
||||||
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
||||||
@@ -79,18 +76,13 @@ export default function ContactPage() {
|
|||||||
description="Contact Dr. S Kumar today for a consultation. Our team is ready to help you achieve healthy, glowing skin with personalized treatment solutions."
|
description="Contact Dr. S Kumar today for a consultation. Our team is ready to help you achieve healthy, glowing skin with personalized treatment solutions."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now: +91 95570 59976",
|
text: "Call Now: +91 95570 59976", href: "tel:+919557059976"},
|
||||||
href: "tel:+919557059976",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "WhatsApp: Get Consultation",
|
text: "WhatsApp: Get Consultation", href: "https://wa.me/919557059976"},
|
||||||
href: "https://wa.me/919557059976",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -214,4 +206,4 @@ export default function ContactPage() {
|
|||||||
</footer>
|
</footer>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
215
src/app/page.tsx
215
src/app/page.tsx
@@ -17,16 +17,15 @@ import Link from 'next/link';
|
|||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Treatments", id: "treatments" },
|
{ name: "Treatments", id: "/treatments" },
|
||||||
{ name: "Results", id: "results" },
|
{ name: "Results", id: "/results" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Clinic",
|
title: "Clinic", items: [
|
||||||
items: [
|
|
||||||
{ label: "About Dr. Kumar", href: "/about" },
|
{ label: "About Dr. Kumar", href: "/about" },
|
||||||
{ label: "Our Services", href: "/treatments" },
|
{ label: "Our Services", href: "/treatments" },
|
||||||
{ label: "Before & After", href: "/results" },
|
{ label: "Before & After", href: "/results" },
|
||||||
@@ -34,8 +33,7 @@ export default function HomePage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
||||||
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
||||||
{ label: "Book Appointment", href: "/contact" },
|
{ label: "Book Appointment", href: "/contact" },
|
||||||
@@ -43,8 +41,7 @@ export default function HomePage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Location",
|
title: "Location", items: [
|
||||||
items: [
|
|
||||||
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
||||||
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
||||||
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
||||||
@@ -85,49 +82,26 @@ export default function HomePage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now",
|
text: "Call Now", href: "tel:+919557059976"},
|
||||||
href: "tel:+919557059976",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Book Appointment",
|
text: "Book Appointment", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
|
||||||
carouselItems={[
|
carouselItems={[
|
||||||
{
|
{
|
||||||
id: "carousel-1",
|
id: "carousel-1", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-lying-cosmetologist-s-table-rejuvenation-procedure_343596-140.jpg", imageAlt: "professional dermatologist clinic medical office"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-lying-cosmetologist-s-table-rejuvenation-procedure_343596-140.jpg",
|
|
||||||
imageAlt: "professional dermatologist clinic medical office",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "carousel-2",
|
id: "carousel-2", imageSrc: "http://img.b2bpic.net/free-photo/girl-receiving-facial-treatment-beauty-salon_23-2148194183.jpg", imageAlt: "modern medical clinic professional interior"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-receiving-facial-treatment-beauty-salon_23-2148194183.jpg",
|
|
||||||
imageAlt: "modern medical clinic professional interior",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "carousel-3",
|
id: "carousel-3", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-using-towel_23-2149441234.jpg?_wi=1", imageAlt: "before after acne treatment results photo"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-using-towel_23-2149441234.jpg?_wi=1",
|
|
||||||
imageAlt: "before after acne treatment results photo",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "carousel-4",
|
id: "carousel-4", imageSrc: "http://img.b2bpic.net/free-photo/woman-checking-her-skin-mirror-after-receiving-cosmetic-treatment_107420-73988.jpg?_wi=1", imageAlt: "skin glow transformation treatment results"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-checking-her-skin-mirror-after-receiving-cosmetic-treatment_107420-73988.jpg?_wi=1",
|
|
||||||
imageAlt: "skin glow transformation treatment results",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "carousel-5",
|
id: "carousel-5", imageSrc: "http://img.b2bpic.net/free-photo/woman-making-beauty-procedures-beauty-salon_1303-16713.jpg", imageAlt: "laser skin treatment medical device procedure"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-making-beauty-procedures-beauty-salon_1303-16713.jpg",
|
|
||||||
imageAlt: "laser skin treatment medical device procedure",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "carousel-6",
|
id: "carousel-6", imageSrc: "http://img.b2bpic.net/free-photo/woman-making-beauty-procedures-beauty-salon_1303-16733.jpg", imageAlt: "acne treatment before after results photo"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-making-beauty-procedures-beauty-salon_1303-16733.jpg",
|
|
||||||
imageAlt: "acne treatment before after results photo",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
autoPlay={true}
|
autoPlay={true}
|
||||||
autoPlayInterval={4000}
|
autoPlayInterval={4000}
|
||||||
@@ -145,13 +119,9 @@ export default function HomePage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More", href: "/about"},
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "WhatsApp Consultation",
|
text: "WhatsApp Consultation", href: "https://wa.me/919557059976"},
|
||||||
href: "https://wa.me/919557059976",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/technician-making-sure-high-tech-facility-data-center-is-appropriately-equipped_482257-94430.jpg?_wi=1"
|
imageSrc="http://img.b2bpic.net/free-photo/technician-making-sure-high-tech-facility-data-center-is-appropriately-equipped_482257-94430.jpg?_wi=1"
|
||||||
@@ -166,34 +136,22 @@ export default function HomePage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Zap,
|
icon: Zap,
|
||||||
title: "Acne Treatment",
|
title: "Acne Treatment", description: "Targeted solutions for active acne, preventing future breakouts with advanced laser and chemical therapies."},
|
||||||
description: "Targeted solutions for active acne, preventing future breakouts with advanced laser and chemical therapies.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Sparkles,
|
icon: Sparkles,
|
||||||
title: "Laser Skin Treatment",
|
title: "Laser Skin Treatment", description: "Modern laser technology for skin rejuvenation, removing imperfections and restoring natural radiance."},
|
||||||
description: "Modern laser technology for skin rejuvenation, removing imperfections and restoring natural radiance.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Droplets,
|
icon: Droplets,
|
||||||
title: "Pigmentation Treatment",
|
title: "Pigmentation Treatment", description: "Advanced procedures to treat dark spots, melasma, and uneven skin tone for a brighter complexion."},
|
||||||
description: "Advanced procedures to treat dark spots, melasma, and uneven skin tone for a brighter complexion.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Leaf,
|
icon: Leaf,
|
||||||
title: "Hair Fall Treatment",
|
title: "Hair Fall Treatment", description: "Proven treatments including PRP therapy to stop hair loss and promote healthy hair regrowth."},
|
||||||
description: "Proven treatments including PRP therapy to stop hair loss and promote healthy hair regrowth.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Smile,
|
icon: Smile,
|
||||||
title: "Skin Rejuvenation",
|
title: "Skin Rejuvenation", description: "Chemical peels and anti-aging treatments to restore youthful glow and improve skin texture."},
|
||||||
description: "Chemical peels and anti-aging treatments to restore youthful glow and improve skin texture.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Heart,
|
icon: Heart,
|
||||||
title: "Aesthetic Services",
|
title: "Aesthetic Services", description: "Specialized cosmetic treatments designed to enhance your natural beauty and boost confidence."},
|
||||||
description: "Specialized cosmetic treatments designed to enhance your natural beauty and boost confidence.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Treatment Services"
|
title="Our Treatment Services"
|
||||||
description="Comprehensive dermatology solutions for all your skin concerns using advanced technology and proven techniques."
|
description="Comprehensive dermatology solutions for all your skin concerns using advanced technology and proven techniques."
|
||||||
@@ -205,9 +163,7 @@ export default function HomePage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View All Treatments",
|
text: "View All Treatments", href: "/treatments"},
|
||||||
href: "/treatments",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -218,37 +174,13 @@ export default function HomePage() {
|
|||||||
<MetricCardEleven
|
<MetricCardEleven
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", value: "95%", title: "Acne Improvement", description: "Significant reduction in acne lesions within 8-12 weeks", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-using-towel_23-2149441234.jpg?_wi=2", imageAlt: "before after acne treatment results photo"},
|
||||||
value: "95%",
|
|
||||||
title: "Acne Improvement",
|
|
||||||
description: "Significant reduction in acne lesions within 8-12 weeks",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-using-towel_23-2149441234.jpg?_wi=2",
|
|
||||||
imageAlt: "before after acne treatment results photo",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", value: "88%", title: "Skin Brightening", description: "Visible skin glow and improved radiance after treatments", imageSrc: "http://img.b2bpic.net/free-photo/woman-checking-her-skin-mirror-after-receiving-cosmetic-treatment_107420-73988.jpg?_wi=2", imageAlt: "skin glow transformation treatment results"},
|
||||||
value: "88%",
|
|
||||||
title: "Skin Brightening",
|
|
||||||
description: "Visible skin glow and improved radiance after treatments",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-checking-her-skin-mirror-after-receiving-cosmetic-treatment_107420-73988.jpg?_wi=2",
|
|
||||||
imageAlt: "skin glow transformation treatment results",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", value: "92%", title: "Hair Growth", description: "Effective hair regrowth and reduced hair fall after PRP therapy", imageSrc: "http://img.b2bpic.net/free-photo/blonde-girl-getting-her-hair-washed_23-2148108817.jpg?_wi=1", imageAlt: "hair loss treatment professional solution"},
|
||||||
value: "92%",
|
|
||||||
title: "Hair Growth",
|
|
||||||
description: "Effective hair regrowth and reduced hair fall after PRP therapy",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/blonde-girl-getting-her-hair-washed_23-2148108817.jpg?_wi=1",
|
|
||||||
imageAlt: "hair loss treatment professional solution",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", value: "90%", title: "Pigmentation Reduction", description: "Significant lightening of dark spots and melasma patches", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-getting-face-skin-treatment-wellness-center_23-2148825380.jpg?_wi=1", imageAlt: "skin pigmentation laser treatment technology"},
|
||||||
value: "90%",
|
|
||||||
title: "Pigmentation Reduction",
|
|
||||||
description: "Significant lightening of dark spots and melasma patches",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-getting-face-skin-treatment-wellness-center_23-2148825380.jpg?_wi=1",
|
|
||||||
imageAlt: "skin pigmentation laser treatment technology",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Real Results, Real Transformations"
|
title="Real Results, Real Transformations"
|
||||||
description="See the tangible improvements our patients experience with professional dermatology care."
|
description="See the tangible improvements our patients experience with professional dermatology care."
|
||||||
@@ -266,46 +198,22 @@ export default function HomePage() {
|
|||||||
<TestimonialCardTwo
|
<TestimonialCardTwo
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Priya Sharma", role: "Patient", testimonial: "Good results on my face. Dr S Kumar is the best skin doctor in Pilibhit. Highly professional and caring.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-with-blonde-hair_23-2149085258.jpg?_wi=1", imageAlt: "Priya Sharma - Patient testimonial profile", icon: Star,
|
||||||
name: "Priya Sharma",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Good results on my face. Dr S Kumar is the best skin doctor in Pilibhit. Highly professional and caring.",
|
|
||||||
icon: Star,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Amit Singh", role: "Patient", testimonial: "Very knowledgeable and polite doctor. My acne treatment was successful. Highly recommended for skin care.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-of-handsome-man_23-2149131624.jpg?_wi=1", imageAlt: "Amit Singh - Patient testimonial profile", icon: Star,
|
||||||
name: "Amit Singh",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Very knowledgeable and polite doctor. My acne treatment was successful. Highly recommended for skin care.",
|
|
||||||
icon: Star,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Rajini Verma", role: "Patient", testimonial: "Very careful treatment and excellent results. Dr Kumar listened to my concerns and provided the best solution.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-indian-woman-portrait_23-2149067706.jpg?_wi=1", imageAlt: "Rajini Verma - Patient testimonial profile", icon: Star,
|
||||||
name: "Rajini Verma",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Very careful treatment and excellent results. Dr Kumar listened to my concerns and provided the best solution.",
|
|
||||||
icon: Star,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Vikram Patel", role: "Patient", testimonial: "Professional clinic with modern equipment. My skin improved significantly after the treatment course.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-smiling-at-camera_23-2149044321.jpg?_wi=1", imageAlt: "Vikram Patel - Patient testimonial profile", icon: Star,
|
||||||
name: "Vikram Patel",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Professional clinic with modern equipment. My skin improved significantly after the treatment course.",
|
|
||||||
icon: Star,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Neha Gupta", role: "Patient", testimonial: "Best dermatologist in town! Clean clinic, expert staff, and amazing results. Worth every visit.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-of-happy-young-woman-with-curly-hair_23-2149067555.jpg?_wi=1", imageAlt: "Neha Gupta - Patient testimonial profile", icon: Star,
|
||||||
name: "Neha Gupta",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Best dermatologist in town! Clean clinic, expert staff, and amazing results. Worth every visit.",
|
|
||||||
icon: Star,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "Arjun Desai", role: "Patient", testimonial: "Resolved my hair fall issue with PRP therapy. Dr Kumar's treatment plan was well-structured and effective.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-man-with-folded-arms_23-2149061203.jpg?_wi=1", imageAlt: "Arjun Desai - Patient testimonial profile", icon: Star,
|
||||||
name: "Arjun Desai",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Resolved my hair fall issue with PRP therapy. Dr Kumar's treatment plan was well-structured and effective.",
|
|
||||||
icon: Star,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Patient Testimonials"
|
title="Patient Testimonials"
|
||||||
@@ -329,15 +237,7 @@ export default function HomePage() {
|
|||||||
tagIcon={CheckCircle}
|
tagIcon={CheckCircle}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
names={[
|
names={[
|
||||||
"4.9★ Google Reviews",
|
"4.9★ Google Reviews", "63+ Patient Reviews", "Award Winning Specialist", "Modern Laser Technology", "Safe & Personalized Care", "Professional Medical Team", "Proven Treatment Results", "Patient Satisfaction Focus"]}
|
||||||
"63+ Patient Reviews",
|
|
||||||
"Award Winning Specialist",
|
|
||||||
"Modern Laser Technology",
|
|
||||||
"Safe & Personalized Care",
|
|
||||||
"Professional Medical Team",
|
|
||||||
"Proven Treatment Results",
|
|
||||||
"Patient Satisfaction Focus",
|
|
||||||
]}
|
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
speed={40}
|
speed={40}
|
||||||
@@ -355,35 +255,17 @@ export default function HomePage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "How many sessions do I need for acne treatment?", content: "Acne treatment typically requires 6-10 sessions depending on severity. Dr Kumar will assess your skin and create a personalized treatment plan during your consultation. Most patients see significant improvement within 8-12 weeks."},
|
||||||
title: "How many sessions do I need for acne treatment?",
|
|
||||||
content: "Acne treatment typically requires 6-10 sessions depending on severity. Dr Kumar will assess your skin and create a personalized treatment plan during your consultation. Most patients see significant improvement within 8-12 weeks.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Is laser treatment safe for all skin types?", content: "Yes, our advanced laser technology is safe for all skin types. Dr Kumar customizes the laser settings based on your skin tone and condition to ensure optimal results with minimal risk of complications."},
|
||||||
title: "Is laser treatment safe for all skin types?",
|
|
||||||
content: "Yes, our advanced laser technology is safe for all skin types. Dr Kumar customizes the laser settings based on your skin tone and condition to ensure optimal results with minimal risk of complications.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "How long does hair regrowth take with PRP therapy?", content: "PRP therapy typically shows results within 3-6 months. Most patients require 4-6 sessions for optimal hair regrowth. Maintenance sessions are recommended every 6-12 months."},
|
||||||
title: "How long does hair regrowth take with PRP therapy?",
|
|
||||||
content: "PRP therapy typically shows results within 3-6 months. Most patients require 4-6 sessions for optimal hair regrowth. Maintenance sessions are recommended every 6-12 months.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "What is the downtime after laser treatment?", content: "Laser treatments have minimal downtime. You may experience slight redness for a few hours. We recommend avoiding sun exposure and using SPF 50+ for the next 48 hours."},
|
||||||
title: "What is the downtime after laser treatment?",
|
|
||||||
content: "Laser treatments have minimal downtime. You may experience slight redness for a few hours. We recommend avoiding sun exposure and using SPF 50+ for the next 48 hours.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "Can pigmentation treatment work on old spots?", content: "Yes, our pigmentation treatments are effective even on long-standing dark spots and melasma. Results vary based on spot depth and skin type. Usually 4-8 sessions are needed for optimal results."},
|
||||||
title: "Can pigmentation treatment work on old spots?",
|
|
||||||
content: "Yes, our pigmentation treatments are effective even on long-standing dark spots and melasma. Results vary based on spot depth and skin type. Usually 4-8 sessions are needed for optimal results.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", title: "How do I book an appointment?", content: "You can book an appointment by calling +91 95570 59976, WhatsApp us, or using our online appointment form. We offer flexible timing with clinics open daily, closing at 8 PM."},
|
||||||
title: "How do I book an appointment?",
|
|
||||||
content: "You can book an appointment by calling +91 95570 59976, WhatsApp us, or using our online appointment form. We offer flexible timing with clinics open daily, closing at 8 PM.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -402,18 +284,13 @@ export default function HomePage() {
|
|||||||
description="Contact Dr. S Kumar today for a consultation. Our team is ready to help you achieve healthy, glowing skin with personalized treatment solutions."
|
description="Contact Dr. S Kumar today for a consultation. Our team is ready to help you achieve healthy, glowing skin with personalized treatment solutions."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now: +91 95570 59976",
|
text: "Call Now: +91 95570 59976", href: "tel:+919557059976"},
|
||||||
href: "tel:+919557059976",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "WhatsApp: Get Consultation",
|
text: "WhatsApp: Get Consultation", href: "https://wa.me/919557059976"},
|
||||||
href: "https://wa.me/919557059976",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -428,4 +305,4 @@ export default function HomePage() {
|
|||||||
</footer>
|
</footer>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,39 +7,36 @@ import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
|||||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
import { Image, Quote, Phone } from "lucide-react";
|
import { Image, Quote, Phone, Star } from "lucide-react";
|
||||||
|
|
||||||
export default function ResultsPage() {
|
export default function ResultsPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Treatments", id: "treatments" },
|
{ name: "Treatments", id: "/treatments" },
|
||||||
{ name: "Results", id: "results" },
|
{ name: "Results", id: "/results" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Clinic",
|
title: "Clinic", items: [
|
||||||
items: [
|
{ label: "About Dr. Kumar", href: "/about" },
|
||||||
{ label: "About Dr. Kumar", href: "/" },
|
|
||||||
{ label: "Our Services", href: "/treatments" },
|
{ label: "Our Services", href: "/treatments" },
|
||||||
{ label: "Before & After", href: "/results" },
|
{ label: "Before & After", href: "/results" },
|
||||||
{ label: "Patient Reviews", href: "/" }
|
{ label: "Patient Reviews", href: "/#testimonials" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
||||||
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
||||||
{ label: "Book Appointment", href: "/" },
|
{ label: "Book Appointment", href: "/contact" },
|
||||||
{ label: "Get Directions", href: "https://maps.google.com/?q=Dr+S+Kumar+Skin+Laser+Pilibhit" }
|
{ label: "Get Directions", href: "https://maps.google.com/?q=Dr+S+Kumar+Skin+Laser+Pilibhit" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Location",
|
title: "Location", items: [
|
||||||
items: [
|
|
||||||
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
||||||
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
||||||
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
||||||
@@ -74,36 +71,16 @@ export default function ResultsPage() {
|
|||||||
<MetricCardEleven
|
<MetricCardEleven
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", value: "95%", title: "Acne Improvement", description: "Significant reduction in acne lesions within 8-12 weeks", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-using-towel_23-2149441234.jpg?_wi=4", imageAlt: "Before after acne treatment results photo"
|
||||||
value: "95%",
|
|
||||||
title: "Acne Improvement",
|
|
||||||
description: "Significant reduction in acne lesions within 8-12 weeks",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-using-towel_23-2149441234.jpg?_wi=4",
|
|
||||||
imageAlt: "Before after acne treatment results photo"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", value: "88%", title: "Skin Brightening", description: "Visible skin glow and improved radiance after treatments", imageSrc: "http://img.b2bpic.net/free-photo/woman-checking-her-skin-mirror-after-receiving-cosmetic-treatment_107420-73988.jpg?_wi=4", imageAlt: "Skin glow transformation treatment results"
|
||||||
value: "88%",
|
|
||||||
title: "Skin Brightening",
|
|
||||||
description: "Visible skin glow and improved radiance after treatments",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-checking-her-skin-mirror-after-receiving-cosmetic-treatment_107420-73988.jpg?_wi=4",
|
|
||||||
imageAlt: "Skin glow transformation treatment results"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", value: "92%", title: "Hair Growth", description: "Effective hair regrowth and reduced hair fall after PRP therapy", imageSrc: "http://img.b2bpic.net/free-photo/blonde-girl-getting-her-hair-washed_23-2148108817.jpg?_wi=3", imageAlt: "Hair loss treatment professional solution"
|
||||||
value: "92%",
|
|
||||||
title: "Hair Growth",
|
|
||||||
description: "Effective hair regrowth and reduced hair fall after PRP therapy",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/blonde-girl-getting-her-hair-washed_23-2148108817.jpg?_wi=3",
|
|
||||||
imageAlt: "Hair loss treatment professional solution"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", value: "90%", title: "Pigmentation Reduction", description: "Significant lightening of dark spots and melasma patches", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-getting-face-skin-treatment-wellness-center_23-2148825380.jpg?_wi=3", imageAlt: "Skin pigmentation laser treatment technology"
|
||||||
value: "90%",
|
|
||||||
title: "Pigmentation Reduction",
|
|
||||||
description: "Significant lightening of dark spots and melasma patches",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-getting-face-skin-treatment-wellness-center_23-2148825380.jpg?_wi=3",
|
|
||||||
imageAlt: "Skin pigmentation laser treatment technology"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -121,53 +98,29 @@ export default function ResultsPage() {
|
|||||||
<TestimonialCardTwo
|
<TestimonialCardTwo
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Priya Sharma", role: "Patient", testimonial: "Good results on my face. Dr S Kumar is the best skin doctor in Pilibhit. Highly professional and caring.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-with-blonde-hair_23-2149085258.jpg?_wi=1", imageAlt: "Priya Sharma - Patient testimonial profile", icon: Star
|
||||||
name: "Priya Sharma",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Good results on my face. Dr S Kumar is the best skin doctor in Pilibhit. Highly professional and caring.",
|
|
||||||
icon: Quote
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Amit Singh", role: "Patient", testimonial: "Very knowledgeable and polite doctor. My acne treatment was successful. Highly recommended for skin care.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-of-handsome-man_23-2149131624.jpg?_wi=1", imageAlt: "Amit Singh - Patient testimonial profile", icon: Star
|
||||||
name: "Amit Singh",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Very knowledgeable and polite doctor. My acne treatment was successful. Highly recommended for skin care.",
|
|
||||||
icon: Quote
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Rajini Verma", role: "Patient", testimonial: "Very careful treatment and excellent results. Dr Kumar listened to my concerns and provided the best solution.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-indian-woman-portrait_23-2149067706.jpg?_wi=1", imageAlt: "Rajini Verma - Patient testimonial profile", icon: Star
|
||||||
name: "Rajini Verma",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Very careful treatment and excellent results. Dr Kumar listened to my concerns and provided the best solution.",
|
|
||||||
icon: Quote
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Vikram Patel", role: "Patient", testimonial: "Professional clinic with modern equipment. My skin improved significantly after the treatment course.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-smiling-at-camera_23-2149044321.jpg?_wi=1", imageAlt: "Vikram Patel - Patient testimonial profile", icon: Star
|
||||||
name: "Vikram Patel",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Professional clinic with modern equipment. My skin improved significantly after the treatment course.",
|
|
||||||
icon: Quote
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Neha Gupta", role: "Patient", testimonial: "Best dermatologist in town! Clean clinic, expert staff, and amazing results. Worth every visit.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-of-happy-young-woman-with-curly-hair_23-2149067555.jpg?_wi=1", imageAlt: "Neha Gupta - Patient testimonial profile", icon: Star
|
||||||
name: "Neha Gupta",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Best dermatologist in town! Clean clinic, expert staff, and amazing results. Worth every visit.",
|
|
||||||
icon: Quote
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "Arjun Desai", role: "Patient", testimonial: "Resolved my hair fall issue with PRP therapy. Dr Kumar's treatment plan was well-structured and effective.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-man-with-folded-arms_23-2149061203.jpg?_wi=1", imageAlt: "Arjun Desai - Patient testimonial profile", icon: Star
|
||||||
name: "Arjun Desai",
|
|
||||||
role: "Patient",
|
|
||||||
testimonial: "Resolved my hair fall issue with PRP therapy. Dr Kumar's treatment plan was well-structured and effective.",
|
|
||||||
icon: Quote
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
title="What Our Patients Say"
|
title="What Our Patients Say"
|
||||||
description="Real testimonials from satisfied patients who have experienced transformations at our clinic."
|
description="Real testimonials from satisfied patients who have experienced transformations at our clinic."
|
||||||
tag="4.9 Google Rating"
|
tag="4.9 Google Rating"
|
||||||
tagIcon={Quote}
|
tagIcon={Star}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -184,12 +137,10 @@ export default function ResultsPage() {
|
|||||||
description="Join hundreds of satisfied patients who have transformed their skin. Contact Dr. S Kumar today to discuss your personalized treatment plan."
|
description="Join hundreds of satisfied patients who have transformed their skin. Contact Dr. S Kumar today to discuss your personalized treatment plan."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now: +91 95570 59976",
|
text: "Call Now: +91 95570 59976", href: "tel:+919557059976"
|
||||||
href: "tel:+919557059976"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "WhatsApp: Get Consultation",
|
text: "WhatsApp: Get Consultation", href: "https://wa.me/919557059976"
|
||||||
href: "https://wa.me/919557059976"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -206,4 +157,4 @@ export default function ResultsPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,34 +12,31 @@ import { Zap, Sparkles, Droplets, Leaf, Smile, Heart, Phone } from "lucide-react
|
|||||||
export default function TreatmentsPage() {
|
export default function TreatmentsPage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Treatments", id: "treatments" },
|
{ name: "Treatments", id: "/treatments" },
|
||||||
{ name: "Results", id: "results" },
|
{ name: "Results", id: "/results" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Clinic",
|
title: "Clinic", items: [
|
||||||
items: [
|
{ label: "About Dr. Kumar", href: "/about" },
|
||||||
{ label: "About Dr. Kumar", href: "/" },
|
|
||||||
{ label: "Our Services", href: "/treatments" },
|
{ label: "Our Services", href: "/treatments" },
|
||||||
{ label: "Before & After", href: "/results" },
|
{ label: "Before & After", href: "/results" },
|
||||||
{ label: "Patient Reviews", href: "/" }
|
{ label: "Patient Reviews", href: "/#testimonials" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
||||||
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
||||||
{ label: "Book Appointment", href: "/" },
|
{ label: "Book Appointment", href: "/contact" },
|
||||||
{ label: "Get Directions", href: "https://maps.google.com/?q=Dr+S+Kumar+Skin+Laser+Pilibhit" }
|
{ label: "Get Directions", href: "https://maps.google.com/?q=Dr+S+Kumar+Skin+Laser+Pilibhit" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Location",
|
title: "Location", items: [
|
||||||
items: [
|
|
||||||
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
||||||
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
||||||
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
||||||
@@ -75,33 +72,27 @@ export default function TreatmentsPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Zap,
|
icon: Zap,
|
||||||
title: "Acne Treatment",
|
title: "Acne Treatment", description: "Targeted solutions for active acne, preventing future breakouts with advanced laser and chemical therapies."
|
||||||
description: "Targeted solutions for active acne, preventing future breakouts with advanced laser and chemical therapies."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Sparkles,
|
icon: Sparkles,
|
||||||
title: "Laser Skin Treatment",
|
title: "Laser Skin Treatment", description: "Modern laser technology for skin rejuvenation, removing imperfections and restoring natural radiance."
|
||||||
description: "Modern laser technology for skin rejuvenation, removing imperfections and restoring natural radiance."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Droplets,
|
icon: Droplets,
|
||||||
title: "Pigmentation Treatment",
|
title: "Pigmentation Treatment", description: "Advanced procedures to treat dark spots, melasma, and uneven skin tone for a brighter complexion."
|
||||||
description: "Advanced procedures to treat dark spots, melasma, and uneven skin tone for a brighter complexion."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Leaf,
|
icon: Leaf,
|
||||||
title: "Hair Fall Treatment",
|
title: "Hair Fall Treatment", description: "Proven treatments including PRP therapy to stop hair loss and promote healthy hair regrowth."
|
||||||
description: "Proven treatments including PRP therapy to stop hair loss and promote healthy hair regrowth."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Smile,
|
icon: Smile,
|
||||||
title: "Skin Rejuvenation",
|
title: "Skin Rejuvenation", description: "Chemical peels and anti-aging treatments to restore youthful glow and improve skin texture."
|
||||||
description: "Chemical peels and anti-aging treatments to restore youthful glow and improve skin texture."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Heart,
|
icon: Heart,
|
||||||
title: "Aesthetic Services",
|
title: "Aesthetic Services", description: "Specialized cosmetic treatments designed to enhance your natural beauty and boost confidence."
|
||||||
description: "Specialized cosmetic treatments designed to enhance your natural beauty and boost confidence."
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -114,8 +105,7 @@ export default function TreatmentsPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Book Your Consultation",
|
text: "Book Your Consultation", href: "tel:+919557059976"
|
||||||
href: "tel:+919557059976"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -126,36 +116,16 @@ export default function TreatmentsPage() {
|
|||||||
<MetricCardEleven
|
<MetricCardEleven
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", value: "95%", title: "Acne Improvement", description: "Significant reduction in acne lesions within 8-12 weeks", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-using-towel_23-2149441234.jpg?_wi=3", imageAlt: "Acne treatment before after results"
|
||||||
value: "95%",
|
|
||||||
title: "Acne Improvement",
|
|
||||||
description: "Significant reduction in acne lesions within 8-12 weeks",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-using-towel_23-2149441234.jpg?_wi=3",
|
|
||||||
imageAlt: "Acne treatment before after results"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", value: "88%", title: "Skin Brightening", description: "Visible skin glow and improved radiance after treatments", imageSrc: "http://img.b2bpic.net/free-photo/woman-checking-her-skin-mirror-after-receiving-cosmetic-treatment_107420-73988.jpg?_wi=3", imageAlt: "Skin glow transformation treatment results"
|
||||||
value: "88%",
|
|
||||||
title: "Skin Brightening",
|
|
||||||
description: "Visible skin glow and improved radiance after treatments",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-checking-her-skin-mirror-after-receiving-cosmetic-treatment_107420-73988.jpg?_wi=3",
|
|
||||||
imageAlt: "Skin glow transformation treatment results"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", value: "92%", title: "Hair Growth", description: "Effective hair regrowth and reduced hair fall after PRP therapy", imageSrc: "http://img.b2bpic.net/free-photo/blonde-girl-getting-her-hair-washed_23-2148108817.jpg?_wi=2", imageAlt: "Hair loss treatment professional solution"
|
||||||
value: "92%",
|
|
||||||
title: "Hair Growth",
|
|
||||||
description: "Effective hair regrowth and reduced hair fall after PRP therapy",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/blonde-girl-getting-her-hair-washed_23-2148108817.jpg?_wi=2",
|
|
||||||
imageAlt: "Hair loss treatment professional solution"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", value: "90%", title: "Pigmentation Reduction", description: "Significant lightening of dark spots and melasma patches", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-getting-face-skin-treatment-wellness-center_23-2148825380.jpg?_wi=2", imageAlt: "Skin pigmentation laser treatment technology"
|
||||||
value: "90%",
|
|
||||||
title: "Pigmentation Reduction",
|
|
||||||
description: "Significant lightening of dark spots and melasma patches",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-getting-face-skin-treatment-wellness-center_23-2148825380.jpg?_wi=2",
|
|
||||||
imageAlt: "Skin pigmentation laser treatment technology"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -178,12 +148,10 @@ export default function TreatmentsPage() {
|
|||||||
description="Contact Dr. S Kumar today to discuss your skin concerns and create a personalized treatment plan. Our team is dedicated to helping you achieve your best skin."
|
description="Contact Dr. S Kumar today to discuss your skin concerns and create a personalized treatment plan. Our team is dedicated to helping you achieve your best skin."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now: +91 95570 59976",
|
text: "Call Now: +91 95570 59976", href: "tel:+919557059976"
|
||||||
href: "tel:+919557059976"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "WhatsApp Consultation",
|
text: "WhatsApp Consultation", href: "https://wa.me/919557059976"
|
||||||
href: "https://wa.me/919557059976"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -200,4 +168,4 @@ export default function TreatmentsPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user