Add src/app/services/page.tsx

This commit is contained in:
2026-05-19 18:39:35 +00:00
parent 2df9cca795
commit 0501683d3f

72
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,72 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import FooterMedia from "@/components/sections/footer/FooterMedia";
export default function ServicesPage() {
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: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Call Now", href: "tel:8448212700" }}
animateOnLoad={false}
/>
</div>
<div id="services" data-section="services">
<FeatureCardOne
title="Our Specialized Services"
description="Professional non-emergency medical transportation tailored to your specific needs."
features={[
{ 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?_wi=1" },
{ 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?_wi=1" },
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</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: "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" }] },
]}
copyrightText="© 2025 | Encore Patient Transfer"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}