"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 (
); }