Add src/app/long-distance/page.tsx

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

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 LongDistancePage() {
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="Long-Distance Transport Service"
description="Safe and comfortable transportation for long-distance medical needs. Our drivers are trained to ensure your journey is as smooth as possible."
buttons={[{ text: "Inquire Today", href: "/contact" }]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213849024-kb0a5bd7.jpg"
/>
<FeatureCardOne
title="Travel with Comfort"
description="Reliable solutions tailored for extensive medical travel."
features={[
{ title: "Comfort-Focused Fleet", description: "High-specification vehicles designed for extended travel stability." },
{ title: "Professional Crew", description: "Highly trained staff dedicated to patient welfare during long hauls." },
{ title: "Direct Routing", description: "Optimized routing to minimize travel time and maximize patient ease.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779214385992-jexcty2w.png" },
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
/>
<ContactCTA
tag="Long Distance Inquiry"
title="Plan Your Journey"
description="Speak to our team about coordinating your next long-distance medical transfer."
buttons={[{ text: "Contact Us", href: "/contact" }]}
/>
<FooterMedia
logoText="Encore Patient Transfer"
columns={[{ title: "Links", items: [{ label: "Back to Home", href: "/" }] }]}
/>
</ReactLenis>
</ThemeProvider>
);
}