"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import { Scan, Camera, Radiation, ShieldCheck, HeartHandshake, Apple, Network, CalendarClock, ClipboardList } from 'lucide-react'; export default function ServicesPage() { const navItems = [ { name: "Services", id: "/services" }, { name: "Doctors", id: "/doctors" } ]; const footerColumns = [ { title: "Quick Links", items: [ { label: "Services", href: "/services" }, { label: "Doctors", href: "/doctors" } ] }, { title: "Departments", items: [ { label: "General Medicine", href: "/services#general-medicine" }, { label: "Dental Care", href: "/services#dental-care" }, { label: "Cardiology", href: "/services#cardiology" }, { label: "Orthopedics", href: "/services#orthopedics" } ] }, { title: "Support", items: [ { label: "Emergency: +1 (123) 456-7890", href: "tel:+11234567890" } ] } ]; return (
); }