Add src/app/hospital-discharge/page.tsx

This commit is contained in:
2026-05-19 18:26:05 +00:00
parent 5122646f5a
commit ecfdf7c6b2

View File

@@ -0,0 +1,55 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterMedia from "@/components/sections/footer/FooterMedia";
export default function HospitalDischargePage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
brandName="Encore Patient Transfer"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "About", id: "/#about" },
{ name: "Contact", id: "/contact" },
]}
/>
<HeroOverlay
title="Hospital Discharge Services"
description="Seamless transition from the hospital to your home. We coordinate with healthcare staff to ensure your discharge is handled with the utmost care and professionalism."
buttons={[{ text: "Book Now", href: "/contact" }]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213129100-mb8j5jac.png"
/>
<FeatureCardOne
title="Discharge Support Details"
description="We handle the logistics so you can focus on recovery."
features={[
{ title: "Door-to-Door Assistance", description: "We assist directly from the hospital ward to your residence." },
{ title: "Equipment Compatibility", description: "Vehicles equipped for mobility aids and stretcher transfers." },
{ title: "Compassionate Staff", description: "Trained professionals ensuring your physical and emotional comfort.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213050701-fdhgt784.png" },
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
/>
<ContactCTA
tag="Ready to Go?"
title="Book Your Hospital Discharge"
description="Let us handle your transport needs safely and comfortably."
buttons={[{ text: "Contact Us", href: "/contact" }]}
/>
<FooterMedia
logoText="Encore Patient Transfer"
columns={[{ title: "Links", items: [{ label: "Back to Home", href: "/" }] }]}
/>
</ReactLenis>
</ThemeProvider>
);
}