diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 42a4b0d..3b87e1f 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -19,8 +19,7 @@ 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" },
@@ -28,8 +27,7 @@ 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" },
@@ -37,8 +35,7 @@ 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: "#" },
@@ -97,19 +94,13 @@ 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"
@@ -126,20 +117,11 @@ 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"
@@ -156,4 +138,4 @@ export default function AboutPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index d687940..cd7a7e3 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -10,16 +10,15 @@ 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" },
@@ -27,8 +26,7 @@ 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" },
@@ -36,8 +34,7 @@ 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: "#" },
@@ -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."
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}
/>
@@ -214,4 +206,4 @@ export default function ContactPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 35987a3..fc3c0d7 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -17,16 +17,15 @@ import Link from 'next/link';
export default function HomePage() {
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" },
@@ -34,8 +33,7 @@ export default function HomePage() {
],
},
{
- 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" },
@@ -43,8 +41,7 @@ export default function HomePage() {
],
},
{
- 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: "#" },
@@ -85,49 +82,26 @@ export default function HomePage() {
tagAnimation="slide-up"
buttons={[
{
- text: "Call Now",
- href: "tel:+919557059976",
- },
+ text: "Call Now", href: "tel:+919557059976"},
{
- text: "Book Appointment",
- href: "/contact",
- },
+ text: "Book Appointment", href: "/contact"},
]}
buttonAnimation="slide-up"
background={{
- variant: "radial-gradient",
- }}
+ variant: "radial-gradient"}}
carouselItems={[
{
- 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",
- },
+ 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"},
{
- 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",
- },
+ 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"},
{
- 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",
- },
+ 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"},
{
- 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",
- },
+ 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"},
{
- 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",
- },
+ 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"},
{
- 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",
- },
+ 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"},
]}
autoPlay={true}
autoPlayInterval={4000}
@@ -145,13 +119,9 @@ export default function HomePage() {
tagAnimation="slide-up"
buttons={[
{
- text: "Learn More",
- href: "/about",
- },
+ text: "Learn More", href: "/about"},
{
- text: "WhatsApp Consultation",
- href: "https://wa.me/919557059976",
- },
+ text: "WhatsApp Consultation", href: "https://wa.me/919557059976"},
]}
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"
@@ -166,34 +136,22 @@ export default function HomePage() {
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."},
]}
title="Our Treatment Services"
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}
buttons={[
{
- text: "View All Treatments",
- href: "/treatments",
- },
+ text: "View All Treatments", href: "/treatments"},
]}
buttonAnimation="slide-up"
/>
@@ -218,37 +174,13 @@ export default function HomePage() {
@@ -428,4 +305,4 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/results/page.tsx b/src/app/results/page.tsx
index 92cec2b..7482e4f 100644
--- a/src/app/results/page.tsx
+++ b/src/app/results/page.tsx
@@ -7,39 +7,36 @@ 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 } from "lucide-react";
+import { Image, Quote, Phone, Star } 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: "/" },
+ title: "Clinic", items: [
+ { label: "About Dr. Kumar", href: "/about" },
{ label: "Our Services", href: "/treatments" },
{ label: "Before & After", href: "/results" },
- { label: "Patient Reviews", href: "/" }
+ { label: "Patient Reviews", href: "/#testimonials" }
]
},
{
- 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: "/" },
+ { label: "Book Appointment", href: "/contact" },
{ 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: "#" },
@@ -74,36 +71,16 @@ export default function ResultsPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/treatments/page.tsx b/src/app/treatments/page.tsx
index ac04dde..91250b9 100644
--- a/src/app/treatments/page.tsx
+++ b/src/app/treatments/page.tsx
@@ -12,34 +12,31 @@ import { Zap, Sparkles, Droplets, Leaf, Smile, Heart, Phone } from "lucide-react
export default function TreatmentsPage() {
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: "/" },
+ title: "Clinic", items: [
+ { label: "About Dr. Kumar", href: "/about" },
{ label: "Our Services", href: "/treatments" },
{ label: "Before & After", href: "/results" },
- { label: "Patient Reviews", href: "/" }
+ { label: "Patient Reviews", href: "/#testimonials" }
]
},
{
- 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: "/" },
+ { label: "Book Appointment", href: "/contact" },
{ 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: "#" },
@@ -75,33 +72,27 @@ 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"
@@ -114,8 +105,7 @@ export default function TreatmentsPage() {
useInvertedBackground={false}
buttons={[
{
- text: "Book Your Consultation",
- href: "tel:+919557059976"
+ text: "Book Your Consultation", href: "tel:+919557059976"
}
]}
buttonAnimation="slide-up"
@@ -126,36 +116,16 @@ export default function TreatmentsPage() {
);
-}
\ No newline at end of file
+}