Files
769168b7-0b15-4e6b-b490-64a…/src/app/about/page.tsx
2026-03-08 07:43:42 +00:00

142 lines
6.4 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import MediaAbout from "@/components/sections/about/MediaAbout";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import FaqBase from "@/components/sections/faq/FaqBase";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Award, Award as AwardIcon, BookOpen, HelpCircle } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "/" },
{ 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" },
{ label: "Our Services", href: "/treatments" },
{ label: "Before & After", href: "/results" },
{ label: "Patient Reviews", href: "/#testimonials" },
],
},
{
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: "Get Directions", href: "https://maps.google.com/?q=Dr+S+Kumar+Skin+Laser+Pilibhit" },
],
},
{
title: "Location", items: [
{ label: "Gandhi Stadium Rd, Pilibhit", href: "#" },
{ label: "Near Hanumaan Ji Ka Mandir", href: "#" },
{ label: "Ashok Colony, Ekta Nagar", href: "#" },
{ label: "Open Daily until 8 PM", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="medium"
background="floatingGradient"
cardStyle="solid"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems}
brandName="Dr S Kumar"
bottomLeftText="Pilibhit, Uttar Pradesh"
bottomRightText="+91 95570 59976"
/>
</div>
<div id="about-hero" data-section="about-hero">
<MediaAbout
title="Dr. S Kumar - Your Trusted Dermatology Expert"
description="With extensive experience in dermatology and a commitment to patient care, Dr. S Kumar brings expertise, compassion, and cutting-edge technology to every treatment. His mission is to help patients achieve healthy, beautiful skin through personalized care and proven solutions."
tag="Certified Dermatologist"
tagIcon={Award}
tagAnimation="slide-up"
buttons={[
{ text: "Book Consultation", href: "/contact" },
{ text: "Call +91 95570 59976", href: "tel:+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=2"
imageAlt="Dr. S Kumar - Professional Dermatologist Portrait"
useInvertedBackground={false}
/>
</div>
<div id="expertise" data-section="expertise">
<FeatureBorderGlow
title="Our Expertise & Commitment"
description="Dr. S Kumar combines medical expertise with modern technology to deliver exceptional results for every patient."
tag="Professional Excellence"
tagIcon={AwardIcon}
tagAnimation="slide-up"
features={[
{
icon: BookOpen,
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."},
{
icon: Award,
title: "Patient Centered", description: "Every treatment plan is customized based on individual skin type, concerns, and personal goals."},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="about-faq" data-section="about-faq">
<FaqBase
title="About Dr. S Kumar & Our Services"
description="Learn more about Dr. S Kumar's qualifications, experience, and approach to dermatology care."
tag="Common Questions"
tagIcon={HelpCircle}
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: "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."},
]}
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
animationType="smooth"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={footerColumns}
copyrightText="© 2025 Dr S Kumar Skin Laser And Aesthetic Care. All rights reserved."
/>
</div>
</ThemeProvider>
);
}