diff --git a/src/app/page.tsx b/src/app/page.tsx index f9dc057..1af882c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,268 +1,277 @@ "use client"; -import React from "react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import HeroSplit from "@/components/sections/hero/HeroSplit"; -import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen"; -import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; -import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; -import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; -import FaqBase from "@/components/sections/faq/FaqBase"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import { Check, MapPin, Clock, Award } from "lucide-react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; +import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; +import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import FaqDouble from '@/components/sections/faq/FaqDouble'; +import { Shield, Zap, Heart, DollarSign } from 'lucide-react'; -const navItems = [ - { name: "Home", id: "/" }, - { name: "Services", id: "services" }, - { name: "Why Choose Us", id: "why-choose" }, - { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" }, -]; +const handleAppointmentClick = () => { + const contactSection = document.getElementById('contact'); + if (contactSection) { + contactSection.scrollIntoView({ behavior: 'smooth' }); + } +}; -const navButton = { - text: "Book Appointment", href: "contact"}; - -export default function Home() { +export default function LandingPage() { return ( - +
-
-
-
- + +
+ +
+
+ +
+
+ +
+
+ +
+
- -
- -
- -
- -
-
-
-
-
-

- Contact Us -

-

- Get in touch with our team to schedule an appointment or ask any - questions. -

-
- -
-
-
- -
-

Address

-

- 123 Dental Street -
- New York, NY 10001 -

-
- -
-
- -
-

Hours

-

- Mon-Fri: 9:00 AM - 6:00 PM -
- Sat: 10:00 AM - 4:00 PM -

-
- -
-
- -
-

Phone

-

- (555) 123-4567 -
- (555) 987-6543 -

-
-
-
-
+
- +
); -} +} \ No newline at end of file