From 73b29531116f71ea3cab5c1a5225fb275b0412fe Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 00:00:15 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 428 +++++++++++++++++++++++------------------------ 1 file changed, 209 insertions(+), 219 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1af882c..209f03b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,277 +1,267 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -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'; +import React from "react"; +import { ThemeProvider } from "@/components/theme/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"; -const handleAppointmentClick = () => { - const contactSection = document.getElementById('contact'); - if (contactSection) { - contactSection.scrollIntoView({ behavior: 'smooth' }); - } -}; +const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "services" }, + { name: "Why Choose Us", id: "why-choose" }, + { name: "Testimonials", id: "testimonials" }, + { name: "Contact", id: "contact" }, +]; -export default function LandingPage() { +const navButton = { + text: "Book Appointment", href: "contact"}; + +export default function Home() { 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 +} -- 2.49.1