Update src/app/contact/page.tsx

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

View File

@@ -2,28 +2,35 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterMedia from "@/components/sections/footer/FooterMedia";
export default function ContactPage() {
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="contact">
<ContactSplitForm
title="Get in Touch"
description="We are ready to assist with your transportation needs. Reach out and our team will get back to you."
inputs={[{ name: "name", type: "text", placeholder: "Full Name" }, { name: "email", type: "email", placeholder: "Email Address" }]}
<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="contact" data-section="contact">
<ContactCTA
tag="Support"
title="Get in Touch"
description="We are ready to assist with your transportation needs. Reach out and our team will get back to you."
buttons={[{ text: "Call Now", href: "tel:8448212700" }]}
useInvertedBackground={false}
background={{ variant: "plain" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
logoText="Encore Patient Transfer"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] }]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/assets/placeholder.png"
/>
</div>
<FooterMedia
logoText="Encore Patient Transfer"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] }]}
/>
</ThemeProvider>
);
}