Update src/app/services/page.tsx

This commit is contained in:
2026-04-07 19:01:46 +00:00
parent 607a63b909
commit c73bfa4f0f

View File

@@ -21,98 +21,32 @@ 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="feature" data-section="feature">
<FeatureCardSeven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Primary Services"
description="Our comprehensive suite of construction services."
features={[
{
title: "Foundation Work",
description: "Solid engineering for lasting structures.",
imageSrc: "http://img.b2bpic.net/free-photo/abstract-city-building-shadows_23-2149283303.jpg?_wi=3",
},
{
title: "Complete Design-Build",
description: "From blue-prints to finished keys.",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-contractor-with-security-helmet-checking-construction-blueprints-while-looking-tablet_662251-387.jpg?_wi=2",
},
]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardSeven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Primary Services"
description="Our comprehensive suite of construction services."
features={[{ title: "Foundation Work", description: "Solid engineering for lasting structures.", imageSrc: "http://img.b2bpic.net/free-photo/abstract-city-building-shadows_23-2149283303.jpg" }, { title: "Complete Design-Build", description: "From blue-prints to finished keys.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-contractor-with-security-helmet-checking-construction-blueprints-while-looking-tablet_662251-387.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=5"
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>
);