Update src/app/page.tsx

This commit is contained in:
2026-05-19 18:26:06 +00:00
parent 170e5960f9
commit 2c3eedb32b

View File

@@ -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() {
</ReactLenis>
</ThemeProvider>
);
}
}