From b9ef64d89746ea72ff8e0fa9e99d9e597cd2e139 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 05:21:32 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9233c3d..0744b30 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; @@ -11,7 +11,7 @@ import TeamCardSix from '@/components/sections/team/TeamCardSix'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Heart, Phone, Mail, MapPin } from 'lucide-react'; +import { Heart, Phone, Mail, MapPin, Stethoscope, Clock, Users, Award } from 'lucide-react'; export default function LandingPage() { return ( @@ -33,7 +33,8 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "/" }, { name: "Services", id: "services" }, - { name: "About", id: "about" }, + { name: "Doctors", id: "team" }, + { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" } ]} button={{ text: "Book Appointment", href: "contact" }} @@ -64,6 +65,7 @@ export default function LandingPage() { title="Why Choose Smart Healthcare?" description="We provide modern, reliable, and compassionate healthcare for you and your family. Our medical professionals focus on accurate diagnosis, effective treatment, and your long-term health." tag="Why Choose Us" + tagIcon={Heart} imageSrc="http://img.b2bpic.net/free-photo/team-doctors-standing-corridor_107420-84841.jpg?_wi=1" imageAlt="Smart Healthcare clinic team" buttons={[{ text: "Learn More", href: "services" }]} @@ -76,6 +78,7 @@ export default function LandingPage() { title="Why Choose Smart Healthcare?" description="What sets Smart Healthcare apart in the community" tag="Core Strengths" + tagIcon={Award} features={[ { id: 1, @@ -105,6 +108,7 @@ export default function LandingPage() { title="Our Services" description="Comprehensive healthcare services for you and your family" tag="Healthcare Services" + tagIcon={Stethoscope} products={[ { id: "1", brand: "Smart Healthcare", name: "General Health Checkups", price: "Affordable", rating: 5, @@ -175,6 +179,7 @@ export default function LandingPage() { title="Meet Our Qualified Doctors" description="Expert medical professionals dedicated to your health and wellbeing" tag="Our Doctors" + tagIcon={Users} members={[ { id: "1", name: "Dr. Rajesh Kumar", role: "Chief Medical Officer", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-confident-doctor-with-arms-crossed-medical-clinic_637285-1463.jpg", imageAlt: "Dr. Rajesh Kumar" @@ -201,6 +206,7 @@ export default function LandingPage() { title="Frequently Asked Questions" description="Find answers to common questions about our services and healthcare offerings" tag="Help & Support" + tagIcon={Clock} faqs={[ { id: "1", title: "Do I need an appointment?", content: "Walk-ins are always welcome at Smart Healthcare Medical & Clinic. However, scheduling an appointment in advance helps reduce waiting times and ensures you see the doctor of your choice. You can call us or visit our contact page to book an appointment." -- 2.49.1