Add src/app/wheelchair-stretcher/page.tsx

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

View File

@@ -0,0 +1,43 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import ReactLenis from "lenis/react";
export default function WheelchairStretcherPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
brandName="Encore Patient Transfer"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "Wheelchair & Stretcher", id: "/wheelchair-stretcher" },
{ name: "Elderly Care", id: "/elderly-care" },
]}
button={{ text: "Call Now", href: "tel:8448212700" }}
animateOnLoad={false}
/>
<HeroOverlay
title="Wheelchair & Stretcher Transport"
description="We provide fully equipped vehicles to ensure the highest safety standards for patients requiring wheelchair or stretcher assistance. Our trained staff handles every transfer with professionalism and dignity."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213470419-9hl915v6.png"
/>
<div className="py-20 container mx-auto px-4">
<h2 className="text-3xl font-bold mb-6">Service Details</h2>
<p className="text-lg text-gray-600">Our service is designed to remove the stress of transportation for patients with mobility limitations. We offer modern equipment, comfortable boarding, and secure transit to all local healthcare facilities.</p>
</div>
<FooterMedia
logoText="Encore Patient Transfer"
columns={[
{ title: "Services", items: [{ label: "Patient Transport", href: "/" }, { label: "Wheelchair & Stretcher", href: "/wheelchair-stretcher" }, { label: "Elderly Care", href: "/elderly-care" }] },
{ title: "Contact", items: [{ label: "(844) 821-2700", href: "tel:8448212700" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}