diff --git a/src/app/page.tsx b/src/app/page.tsx index 7901b09..a19dc7a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import BlogCardOne from '@/components/sections/blog/BlogCardOne'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; @@ -10,8 +9,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import { Shield, Phone, MapPin, CalendarDays } from "lucide-react"; +import { Shield } from "lucide-react"; export default function LandingPage() { return ( @@ -33,7 +31,6 @@ export default function LandingPage() { navItems={[ { name: "Services", id: "#services" }, { name: "About", id: "#about" }, - { name: "Reviews", id: "#reviews" }, { name: "FAQ", id: "#faq" }, { name: "Contact", id: "#contact" }, ]} @@ -86,6 +83,7 @@ export default function LandingPage() { description="Everything you need to know about your dental visit." faqsAnimation="slide-up" textboxLayout="default" + useInvertedBackground={false} faqs={[ { id: "f1", title: "Is the procedure painful?", content: "We utilize modern sedation and gentle techniques to ensure comfort." }, { id: "f2", title: "What if I have an emergency?", content: "We provide same-day urgent care appointments for existing patients." }, @@ -98,6 +96,7 @@ export default function LandingPage() {