Add src/app/non-emergency-transport/page.tsx

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

View File

@@ -0,0 +1,93 @@
"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 NonEmergencyTransportPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="medium"
background="aurora"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Encore Patient Transfer"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/non-emergency-transport" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Call Now", href: "tel:8448212700" }}
animateOnLoad={false}
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlay
title="Non-Emergency Patient Transport"
description="Dedicated, compassionate, and reliable transportation for patients requiring non-emergency care. We ensure safety, punctuality, and comfort for every journey."
buttons={[
{ text: "Book Your Transport", href: "/contact" },
{ text: "Call Now", href: "tel:8448212700" },
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213001258-whdfz6kb.png"
showDimOverlay={true}
/>
</div>
<div id="services" data-section="services">
<FeatureCardOne
title="Our Transport Capabilities"
description="We utilize fully equipped vehicles and trained staff to handle diverse patient needs with the highest standards of safety."
features={[
{ title: "Mobility Assistance", description: "Dedicated support for patients with limited mobility, including safe boarding and seating.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213470419-9hl915v6.png" },
{ title: "Clinical Appointments", description: "Punctual service ensuring you reach your medical, therapy, or specialist appointments on time.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213129100-mb8j5jac.png" },
{ title: "Discharge & Transfers", description: "Seamless, stress-free transfers from hospital facilities to your home or rehabilitation center.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213849024-kb0a5bd7.jpg" },
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Booking"
title="Schedule a Transport"
description="Our dispatch team is ready to assist with your transportation requirements."
buttons={[
{ text: "Call (844) 821-2700", href: "tel:8448212700" },
]}
background={{ variant: "radial-gradient" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
logoText="Encore Patient Transfer"
imageSrc="http://img.b2bpic.net/free-photo/high-angle-view-different-maps_23-2147837133.jpg"
columns={[
{ title: "Services", items: [{ label: "Non-Emergency Transport", href: "/non-emergency-transport" }] },
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Contact Us", href: "/contact" }] },
]}
copyrightText="© 2025 | Encore Patient Transfer"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}