From 2c3eedb32b7907c0aea4e0b8aeb1df7376f6d1a0 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 19 May 2026 18:26:06 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 03d35b2..dad4e6e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,8 +33,9 @@ export default function PatientTransportPage() { brandName="Encore Patient Transfer" navItems={[ { name: "Services", id: "services" }, + { name: "Wheelchair & Stretcher", id: "/wheelchair-stretcher" }, + { name: "Elderly Care", id: "/elderly-care" }, { name: "About", id: "about" }, - { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" }, ]} button={{ text: "Call Now", href: "tel:8448212700" }} @@ -82,8 +83,8 @@ export default function PatientTransportPage() { { title: "Non-Emergency Transport", description: "Comfortable and safe transit for all your non-emergency medical requirements.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779214283238-pebsvouu.png" }, { title: "Hospital Discharge", description: "Smooth and stress-free transit from hospital to home, handled with care.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213129100-mb8j5jac.png" }, { title: "Long-Distance Travel", description: "Reliable transportation solutions for longer journeys with extra attention to comfort.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213849024-kb0a5bd7.jpg" }, - { title: "Wheelchair & Stretcher", description: "Fully equipped vehicles to ensure safe mobility for wheelchair and stretcher-bound patients.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213470419-9hl915v6.png" }, - { title: "Elderly & Special Care", description: "Patient-first service designed for the unique needs of seniors and special-assistance individuals.", imageSrc: "http://img.b2bpic.net/free-photo/man-wheelchair-having-inclusive-office-job_23-2149571042.jpg" }, + { title: "Wheelchair & Stretcher", description: "Fully equipped vehicles to ensure safe mobility for wheelchair and stretcher-bound patients.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213470419-9hl915v6.png", button: { text: "Learn More", href: "/wheelchair-stretcher" } }, + { title: "Elderly & Special Care", description: "Patient-first service designed for the unique needs of seniors and special-assistance individuals.", imageSrc: "http://img.b2bpic.net/free-photo/man-wheelchair-having-inclusive-office-job_23-2149571042.jpg", button: { text: "Learn More", href: "/elderly-care" } }, { title: "24/7 Availability", description: "Round-the-clock service to ensure you have support whenever you need it, night or day.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779214385992-jexcty2w.png" }, ]} gridVariant="uniform-all-items-equal" @@ -155,7 +156,7 @@ export default function PatientTransportPage() { logoText="Encore Patient Transfer" imageSrc="http://img.b2bpic.net/free-photo/high-angle-view-different-maps_23-2147837133.jpg" columns={[ - { title: "Services", items: [{ label: "Patient Transport", href: "#services" }, { label: "Hospital Discharge", href: "#services" }] }, + { title: "Services", items: [{ label: "Patient Transport", href: "/" }, { label: "Wheelchair & Stretcher", href: "/wheelchair-stretcher" }, { label: "Elderly Care", href: "/elderly-care" }] }, { title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Testimonials", href: "/testimonials" }] }, { title: "Contact", items: [{ label: "(844) 821-2700", href: "tel:8448212700" }, { label: "Contact Us", href: "/contact" }] }, ]} @@ -165,4 +166,4 @@ export default function PatientTransportPage() { ); -} \ No newline at end of file +}