Update src/app/contact/page.tsx

This commit is contained in:
2026-05-09 23:03:42 +00:00
parent dd5b6acb2d
commit 6a5e3b0d9e

View File

@@ -26,21 +26,13 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Cole Roofing"
/>
@@ -53,22 +45,13 @@ export default function LandingPage() {
description="Ready to protect your home? Reach out to us for a fast, free inspection today."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Your Phone Number",
required: true,
name: "phone", type: "tel", placeholder: "Your Phone Number", required: true,
},
{
name: "address",
type: "text",
placeholder: "Property Address",
},
name: "address", type: "text", placeholder: "Property Address"},
]}
imageSrc="http://img.b2bpic.net/free-photo/man-working-roof-front-view_23-2148748780.jpg"
/>
@@ -78,7 +61,6 @@ export default function LandingPage() {
<TextAbout
useInvertedBackground={false}
title="Fast-Track Your Roofing Project"
description="We understand the urgency of roof repairs. Contact us for a rapid-response inspection today."
/>
</div>
@@ -86,13 +68,9 @@ export default function LandingPage() {
<FooterLogoReveal
logoText="Cole Roofing Services"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Contact Us",
href: "/contact",
}}
text: "Contact Us", href: "/contact"}}
/>
</div>
</ReactLenis>