Update src/app/contact/page.tsx

This commit is contained in:
2026-04-07 19:01:45 +00:00
parent 2f900ba13d
commit 4d00a8f96d

View File

@@ -21,102 +21,43 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Projects",
id: "/projects",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Dutchman Contracting"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Projects", id: "/projects" }, { name: "Services", id: "/services" }, { name: "Contact", id: "/contact" }]}
brandName="Dutchman Contracting"
button={{ text: "Contact Us", href: "/contact" }}
/>
</div>
<div id="contact-body" data-section="contact-body">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Inquiry"
title="Start Your Project"
description="Let us build your vision. Reach out to schedule a private consultation."
imageSrc="http://img.b2bpic.net/free-photo/lyon-france-december-22-2014-musee-des-confluences-musee-des-confluences-is-located-confluence-rhone-saone-rivers_268835-1074.jpg?_wi=6"
/>
</div>
<div id="contact-body" data-section="contact-body">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Inquiry"
title="Start Your Project"
description="Let us build your vision. Reach out to schedule a private consultation."
imageSrc="http://img.b2bpic.net/free-photo/lyon-france-december-22-2014-musee-des-confluences-musee-des-confluences-is-located-confluence-rhone-saone-rivers_268835-1074.jpg"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Visit Us"
title="Our Studio"
description="Come visit our design office to discuss your project in person."
imageSrc="http://img.b2bpic.net/free-photo/engineers-with-helmets-standing-by-factory_1157-35526.jpg?_wi=3"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Visit Us"
title="Our Studio"
description="Come visit our design office to discuss your project in person."
imageSrc="http://img.b2bpic.net/free-photo/engineers-with-helmets-standing-by-factory_1157-35526.jpg"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/lyon-france-december-22-2014-musee-des-confluences-musee-des-confluences-is-located-confluence-rhone-saone-rivers_268835-1074.jpg?_wi=7"
logoText="Dutchman Contracting"
columns={[
{
title: "Navigation",
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Projects",
href: "/projects",
},
],
},
{
title: "Company",
items: [
{
label: "Services",
href: "/services",
},
{
label: "Contact",
href: "/contact",
},
{
label: "Privacy",
href: "#",
},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/lyon-france-december-22-2014-musee-des-confluences-musee-des-confluences-is-located-confluence-rhone-saone-rivers_268835-1074.jpg"
logoText="Dutchman Contracting"
columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Projects", href: "/projects" }] }, { title: "Company", items: [{ label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }, { label: "Privacy", href: "#" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);