diff --git a/src/app/page.tsx b/src/app/page.tsx index f9dc057..9a83fef 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,178 +1,110 @@ "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 NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroLogo from "@/components/sections/hero/HeroLogo"; +import MediaAbout from "@/components/sections/about/MediaAbout"; +import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven"; +import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import FaqBase from "@/components/sections/faq/FaqBase"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import { Check, MapPin, Clock, Award } from "lucide-react"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import { Mail, CheckCircle2 } 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 navButton = { - text: "Book Appointment", href: "contact"}; - -export default function Home() { +const page = () => { return ( - +
- +
+ +
+
- -
- -
- -
- -
-
- @@ -183,22 +115,19 @@ export default function Home() { faqs={[ { id: "1", title: "How often should I visit the dentist?", content: - "We recommend visiting your dentist every 6 months for regular cleanings and check-ups. However, if you have specific concerns or gum disease, more frequent visits may be necessary."}, + "Most people should visit their dentist twice a year for regular checkups and cleanings. However, some may need more frequent visits depending on their oral health condition."}, { - id: "2", title: "Are dental implants painful?", content: - "The implant procedure is performed under anesthesia, so you won't feel pain during the surgery. You may experience some mild discomfort after the procedure, which can be managed with pain medication."}, + id: "2", title: "Are dental implants safe?", content: + "Yes, dental implants are a safe and effective solution for replacing missing teeth. They are made from biocompatible materials and have a high success rate when properly placed and maintained."}, { id: "3", title: "How long does teeth whitening last?", content: - "Professional teeth whitening results typically last between 6-12 months, depending on your habits. We recommend touch-ups annually to maintain your bright smile."}, + "Professional teeth whitening results typically last between 6 months to 2 years, depending on your lifestyle and maintenance habits. Regular touch-ups can help maintain the results."}, { - id: "4", title: "What can I do to prevent cavities?", content: - "Brush your teeth twice daily with fluoride toothpaste, floss daily, limit sugary foods and drinks, and visit your dentist regularly for cleanings and check-ups."}, - { - id: "5", title: "Do you offer emergency dental services?", content: - "Yes, we offer emergency dental services for urgent situations. Please call our office immediately if you're experiencing severe dental pain or trauma."}, + id: "4", title: "What should I do if I have a dental emergency?", content: + "If you have a dental emergency, please contact our office immediately. We offer emergency appointments and can provide guidance on initial care until you can see us."}, ]} title="Frequently Asked Questions" - description="Find answers to common questions about our dental services." + description="Find answers to common questions about our dental services and treatments." textboxLayout="default" useInvertedBackground={false} faqsAnimation="slide-up" @@ -206,63 +135,21 @@ export default function Home() {
-
-
-
-

- 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 -

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