Update src/app/contact/page.tsx

This commit is contained in:
2026-05-07 11:59:35 +00:00
parent 9fcd6110f6
commit bd4ade569c

View File

@@ -25,37 +25,20 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About Us",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About Us", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Mike's Plumbing"
button={{
text: "Get a Free Quote",
href: "/contact",
}}
button={{ text: "Get a Free Quote", href: "/contact" }}
/>
</div>
<div id="contact-body" data-section="contact-body">
<ContactCenter
useInvertedBackground={true}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Contact Us"
title="Get in Touch"
description="Need a quote? Give us a call or send a message."
@@ -68,47 +51,19 @@ export default function LandingPage() {
title="Service Guarantee"
sections={[
{
heading: "Our Policy",
content: {
type: "paragraph",
text: "We guarantee our workmanship for 12 months.",
},
},
heading: "Our Policy", content: "We guarantee our workmanship for 12 months."
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/fashionable-young-caucasian-male-student-wearing-snapback-opening-door-his-white-four-wheel-drive-vehicle-looking-away-with-smile_273609-1585.jpg?_wi=4"
imageSrc="http://img.b2bpic.net/free-photo/fashionable-young-caucasian-male-student-wearing-snapback-opening-door-his-white-four-wheel-drive-vehicle-looking-away-with-smile_273609-1585.jpg"
logoText="Mike's Plumbing"
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Services",
href: "/services",
},
],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Services", href: "/services" }] },
{ title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "Privacy Policy", href: "#" }] }
]}
/>
</div>