Update src/app/contact/page.tsx

This commit is contained in:
2026-04-07 17:08:44 +00:00
parent 8749cee006
commit 9bebce77c9

View File

@@ -25,25 +25,15 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Portfolio",
id: "/portfolio",
},
name: "Portfolio", id: "/portfolio"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="ABH Construction"
/>
@@ -53,19 +43,13 @@ export default function LandingPage() {
<ContactSplitForm
useInvertedBackground={false}
title="Inquire About Your Project"
description="Ready to discuss a new build or a renovation? We are here to assist."
description="Ready to discuss a new build or a renovation? Call us at (585) 297-4955 or use the form below."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "Email",
required: true,
name: "email", type: "email", placeholder: "Email", required: true,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/woman-working-with-geometric-triangle-pen_23-2148039880.jpg?_wi=2"
@@ -75,10 +59,10 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterCard
logoText="ABH Construction"
copyrightText="© 2025 ABH Construction. All rights reserved."
copyrightText="© 2025 ABH Construction. Contact: (585) 297-4955. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}