Update src/app/about/page.tsx

This commit is contained in:
2026-05-19 18:18:30 +00:00
parent c848df7189
commit 73137a44b4

View File

@@ -7,28 +7,30 @@ import FooterMedia from "@/components/sections/footer/FooterMedia";
export default function AboutPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingInline
brandName="Encore Patient Transfer"
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Testimonials", id: "/testimonials" }, { name: "Contact", id: "/contact" }]}
button={{ text: "Call Now", href: "tel:8448212700" }}
/>
<div id="about">
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Encore Patient Transfer"
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Testimonials", id: "/testimonials" }, { name: "Contact", id: "/contact" }]}
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
tag="About Us"
title="Dedicated to Your Comfort and Safety"
description="Encore Patient Transfer was born out of a commitment to provide safe, dignified transport for patients in Oshawa and beyond. Our team of experienced professionals focuses on quality care above all else."
metrics={[{ value: "24/7", title: "Available" }, { value: "Safe", title: "Standard" }]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DwHgUpAs8zmh5Hh3fDe6vdqAEF/uploaded-1779213050701-fdhgt784.png"
useInvertedBackground={false}
mediaAnimation="slide-up"
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<FooterMedia
logoText="Encore Patient Transfer"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] }]}
/>
<div id="footer" data-section="footer">
<FooterMedia
logoText="Encore Patient Transfer"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] }]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/assets/placeholder.png"
/>
</div>
</ThemeProvider>
);
}