Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 53c4edefa3 | |||
| 6c750ecd9d |
@@ -19,7 +19,8 @@ export default function AboutPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Clinic", items: [
|
||||
title: "Clinic",
|
||||
items: [
|
||||
{ label: "About Dr. Kumar", href: "/about" },
|
||||
{ label: "Our Services", href: "/treatments" },
|
||||
{ label: "Before & After", href: "/results" },
|
||||
@@ -27,7 +28,8 @@ export default function AboutPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
title: "Contact",
|
||||
items: [
|
||||
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
||||
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
||||
{ label: "Book Appointment", href: "/contact" },
|
||||
@@ -35,7 +37,8 @@ export default function AboutPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Location", items: [
|
||||
title: "Location",
|
||||
items: [
|
||||
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
||||
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
||||
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
||||
@@ -94,13 +97,19 @@ export default function AboutPage() {
|
||||
features={[
|
||||
{
|
||||
icon: BookOpen,
|
||||
title: "Advanced Training", description: "Specialized dermatology training with focus on laser treatments, aesthetic procedures, and skin disorder management."},
|
||||
title: "Advanced Training",
|
||||
description: "Specialized dermatology training with focus on laser treatments, aesthetic procedures, and skin disorder management.",
|
||||
},
|
||||
{
|
||||
icon: AwardIcon,
|
||||
title: "Award Winning", description: "Recognized for excellence in dermatology with 4.9★ patient ratings and consistent positive feedback."},
|
||||
title: "Award Winning",
|
||||
description: "Recognized for excellence in dermatology with 4.9★ patient ratings and consistent positive feedback.",
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
title: "Patient Centered", description: "Every treatment plan is customized based on individual skin type, concerns, and personal goals."},
|
||||
title: "Patient Centered",
|
||||
description: "Every treatment plan is customized based on individual skin type, concerns, and personal goals.",
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -117,11 +126,20 @@ export default function AboutPage() {
|
||||
tagAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
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."},
|
||||
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.",
|
||||
},
|
||||
{
|
||||
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."},
|
||||
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.",
|
||||
},
|
||||
{
|
||||
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."},
|
||||
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.",
|
||||
},
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -138,4 +156,4 @@ export default function AboutPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10,15 +10,16 @@ import Link from 'next/link';
|
||||
export default function ContactPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Treatments", id: "/treatments" },
|
||||
{ name: "Results", id: "/results" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Treatments", id: "treatments" },
|
||||
{ name: "Results", id: "results" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Clinic", items: [
|
||||
title: "Clinic",
|
||||
items: [
|
||||
{ label: "About Dr. Kumar", href: "/about" },
|
||||
{ label: "Our Services", href: "/treatments" },
|
||||
{ label: "Before & After", href: "/results" },
|
||||
@@ -26,7 +27,8 @@ export default function ContactPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
title: "Contact",
|
||||
items: [
|
||||
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
||||
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
||||
{ label: "Book Appointment", href: "/contact" },
|
||||
@@ -34,7 +36,8 @@ export default function ContactPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Location", items: [
|
||||
title: "Location",
|
||||
items: [
|
||||
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
||||
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
||||
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
||||
@@ -76,13 +79,18 @@ 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."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now: +91 95570 59976", href: "tel:+919557059976"},
|
||||
text: "Call Now: +91 95570 59976",
|
||||
href: "tel:+919557059976",
|
||||
},
|
||||
{
|
||||
text: "WhatsApp: Get Consultation", href: "https://wa.me/919557059976"},
|
||||
text: "WhatsApp: Get Consultation",
|
||||
href: "https://wa.me/919557059976",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{
|
||||
variant: "radial-gradient"}}
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
@@ -206,4 +214,4 @@ export default function ContactPage() {
|
||||
</footer>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -198,22 +198,22 @@ export default function HomePage() {
|
||||
<TestimonialCardTwo
|
||||
testimonials={[
|
||||
{
|
||||
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,
|
||||
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.", icon: Star,
|
||||
},
|
||||
{
|
||||
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,
|
||||
id: "2", 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", 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,
|
||||
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.", icon: Star,
|
||||
},
|
||||
{
|
||||
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,
|
||||
id: "4", name: "Vikram Patel", role: "Patient", testimonial: "Professional clinic with modern equipment. My skin improved significantly after the treatment course.", icon: Star,
|
||||
},
|
||||
{
|
||||
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,
|
||||
id: "5", name: "Neha Gupta", role: "Patient", testimonial: "Best dermatologist in town! Clean clinic, expert staff, and amazing results. Worth every visit.", icon: Star,
|
||||
},
|
||||
{
|
||||
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,
|
||||
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.", icon: Star,
|
||||
},
|
||||
]}
|
||||
title="Patient Testimonials"
|
||||
@@ -305,4 +305,4 @@ export default function HomePage() {
|
||||
</footer>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,36 +7,39 @@ import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Image, Quote, Phone, Star } from "lucide-react";
|
||||
import { Image, Quote, Phone } from "lucide-react";
|
||||
|
||||
export default function ResultsPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Treatments", id: "/treatments" },
|
||||
{ name: "Results", id: "/results" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Treatments", id: "treatments" },
|
||||
{ name: "Results", id: "results" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Clinic", items: [
|
||||
{ label: "About Dr. Kumar", href: "/about" },
|
||||
title: "Clinic",
|
||||
items: [
|
||||
{ label: "About Dr. Kumar", href: "/" },
|
||||
{ label: "Our Services", href: "/treatments" },
|
||||
{ label: "Before & After", href: "/results" },
|
||||
{ label: "Patient Reviews", href: "/#testimonials" }
|
||||
{ label: "Patient Reviews", href: "/" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
title: "Contact",
|
||||
items: [
|
||||
{ label: "Phone: +91 95570 59976", href: "tel:+919557059976" },
|
||||
{ label: "WhatsApp Consultation", href: "https://wa.me/919557059976" },
|
||||
{ label: "Book Appointment", href: "/contact" },
|
||||
{ label: "Book Appointment", href: "/" },
|
||||
{ label: "Get Directions", href: "https://maps.google.com/?q=Dr+S+Kumar+Skin+Laser+Pilibhit" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Location", items: [
|
||||
title: "Location",
|
||||
items: [
|
||||
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
|
||||
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
|
||||
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
|
||||
@@ -71,16 +74,36 @@ export default function ResultsPage() {
|
||||
<MetricCardEleven
|
||||
metrics={[
|
||||
{
|
||||
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"
|
||||
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"
|
||||
},
|
||||
{
|
||||
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"
|
||||
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"
|
||||
},
|
||||
{
|
||||
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"
|
||||
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"
|
||||
},
|
||||
{
|
||||
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"
|
||||
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"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -98,29 +121,53 @@ export default function ResultsPage() {
|
||||
<TestimonialCardTwo
|
||||
testimonials={[
|
||||
{
|
||||
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
|
||||
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.",
|
||||
icon: Quote
|
||||
},
|
||||
{
|
||||
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
|
||||
id: "2",
|
||||
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", 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
|
||||
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.",
|
||||
icon: Quote
|
||||
},
|
||||
{
|
||||
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
|
||||
id: "4",
|
||||
name: "Vikram Patel",
|
||||
role: "Patient",
|
||||
testimonial: "Professional clinic with modern equipment. My skin improved significantly after the treatment course.",
|
||||
icon: Quote
|
||||
},
|
||||
{
|
||||
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
|
||||
id: "5",
|
||||
name: "Neha Gupta",
|
||||
role: "Patient",
|
||||
testimonial: "Best dermatologist in town! Clean clinic, expert staff, and amazing results. Worth every visit.",
|
||||
icon: Quote
|
||||
},
|
||||
{
|
||||
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
|
||||
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.",
|
||||
icon: Quote
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="What Our Patients Say"
|
||||
description="Real testimonials from satisfied patients who have experienced transformations at our clinic."
|
||||
tag="4.9 Google Rating"
|
||||
tagIcon={Star}
|
||||
tagIcon={Quote}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -137,10 +184,12 @@ 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."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now: +91 95570 59976", href: "tel:+919557059976"
|
||||
text: "Call Now: +91 95570 59976",
|
||||
href: "tel:+919557059976"
|
||||
},
|
||||
{
|
||||
text: "WhatsApp: Get Consultation", href: "https://wa.me/919557059976"
|
||||
text: "WhatsApp: Get Consultation",
|
||||
href: "https://wa.me/919557059976"
|
||||
}
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -157,4 +206,4 @@ export default function ResultsPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -72,28 +72,22 @@ export default function TreatmentsPage() {
|
||||
features={[
|
||||
{
|
||||
icon: Zap,
|
||||
title: "Acne Treatment", description: "Targeted solutions for active acne, preventing future breakouts with advanced laser and chemical therapies."
|
||||
},
|
||||
title: "Acne Treatment", description: "Targeted solutions for active acne, preventing future breakouts with advanced laser and chemical therapies."},
|
||||
{
|
||||
icon: Sparkles,
|
||||
title: "Laser Skin Treatment", description: "Modern laser technology for skin rejuvenation, removing imperfections and restoring natural radiance."
|
||||
},
|
||||
title: "Laser Skin Treatment", description: "Modern laser technology for skin rejuvenation, removing imperfections and restoring natural radiance."},
|
||||
{
|
||||
icon: Droplets,
|
||||
title: "Pigmentation Treatment", description: "Advanced procedures to treat dark spots, melasma, and uneven skin tone for a brighter complexion."
|
||||
},
|
||||
title: "Pigmentation Treatment", description: "Advanced procedures to treat dark spots, melasma, and uneven skin tone for a brighter complexion."},
|
||||
{
|
||||
icon: Leaf,
|
||||
title: "Hair Fall Treatment", description: "Proven treatments including PRP therapy to stop hair loss and promote healthy hair regrowth."
|
||||
},
|
||||
title: "Hair Fall Treatment", description: "Proven treatments including PRP therapy to stop hair loss and promote healthy hair regrowth."},
|
||||
{
|
||||
icon: Smile,
|
||||
title: "Skin Rejuvenation", description: "Chemical peels and anti-aging treatments to restore youthful glow and improve skin texture."
|
||||
},
|
||||
title: "Skin Rejuvenation", description: "Chemical peels and anti-aging treatments to restore youthful glow and improve skin texture."},
|
||||
{
|
||||
icon: Heart,
|
||||
title: "Aesthetic Services", description: "Specialized cosmetic treatments designed to enhance your natural beauty and boost confidence."
|
||||
}
|
||||
title: "Aesthetic Services", description: "Specialized cosmetic treatments designed to enhance your natural beauty and boost confidence."}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Our Comprehensive Treatment Services"
|
||||
@@ -168,4 +162,4 @@ export default function TreatmentsPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user