"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import TextAbout from '@/components/sections/about/TextAbout'; import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import { Tooth, Smile, Award } from "lucide-react"; import Link from "next/link"; export default function HomePage() { const navItems = [ { name: "Home", id: "/" }, { name: "General Dentistry", id: "/general-dentistry" }, { name: "Implants", id: "/implants" }, { name: "Root Canals", id: "/root-canals" }, { name: "Cosmetic", id: "/cosmetic-treatments" }, { name: "Family Care", id: "/family-care" } ]; const footerNavItemsColumn1 = [ { label: "General Dentistry", href: "/general-dentistry" }, { label: "Dental Implants", href: "/implants" }, { label: "Root Canals", href: "/root-canals" } ]; const footerNavItemsColumn2 = [ { label: "Cosmetic Treatments", href: "/cosmetic-treatments" }, { label: "Family Care", href: "/family-care" }, { label: "About Us", href: "/#about" } ]; const footerNavItemsColumn3 = [ { label: "Contact Us", href: "/contact" }, { label: "Book Appointment", href: "/contact" }, { label: "Privacy Policy", href: "#" } ]; return (
); }