Update src/app/services/page.tsx

This commit is contained in:
2026-04-26 05:13:50 +00:00
parent 2b40abcdfb
commit aa4cfa91ae

View File

@@ -24,26 +24,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" }
]}
brandName="Dothan Pipe & Supply"
/>
@@ -57,62 +41,20 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Hard-to-Find Sourcing",
description: "If it exists, we'll locate it.",
imageSrc: "http://img.b2bpic.net/free-photo/sanitary-equipment_93675-132304.jpg?_wi=1",
titleImageSrc: "http://img.b2bpic.net/free-photo/high-angle-biodegradable-straw-tip_23-2148339445.jpg",
buttonText: "Read More",
title: "Hard-to-Find Sourcing", description: "If it exists, we'll locate it.", imageSrc: "http://img.b2bpic.net/free-photo/sanitary-equipment_93675-132304.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/high-angle-biodegradable-straw-tip_23-2148339445.jpg", buttonText: "Read More"
},
{
title: "Fast Ordering",
description: "Quick turnaround on special requests.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-glitter-decoration-detail_23-2149048303.jpg?_wi=1",
titleImageSrc: "http://img.b2bpic.net/free-photo/nozzles-ratchets_23-2148180526.jpg",
buttonText: "Read More",
title: "Fast Ordering", description: "Quick turnaround on special requests.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-glitter-decoration-detail_23-2149048303.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/nozzles-ratchets_23-2148180526.jpg", buttonText: "Read More"
},
{
title: "Contractor Support",
description: "Bulk orders, consistent supply.",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-repairing-bicycle_23-2148138541.jpg",
titleImageSrc: "http://img.b2bpic.net/free-photo/high-angle-still-life-assortment-pvc_23-2149062955.jpg",
buttonText: "Read More",
title: "Contractor Support", description: "Bulk orders, consistent supply.", imageSrc: "http://img.b2bpic.net/free-photo/mechanic-repairing-bicycle_23-2148138541.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/high-angle-still-life-assortment-pvc_23-2149062955.jpg", buttonText: "Read More"
},
{
title: "Expert Guidance",
description: "Not sure what you need? We'll help.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-going-out-shopping-various-consumer-goods_23-2151669823.jpg",
titleImageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746316.jpg",
buttonText: "Read More",
},
title: "Expert Guidance", description: "Not sure what you need? We'll help.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-going-out-shopping-various-consumer-goods_23-2151669823.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746316.jpg", buttonText: "Read More"
}
]}
title="We Don't Just Sell — We Solve"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyNine
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="What We Offer"
description="Industrial-grade solutions for every project."
features={[
{
title: "Sourcing",
description: "We find the rare stuff.",
imageSrc: "http://img.b2bpic.net/free-photo/sanitary-equipment_93675-132304.jpg?_wi=2",
titleImageSrc: "http://img.b2bpic.net/free-photo/high-angle-biodegradable-straw-tip_23-2148339445.jpg",
buttonText: "Check",
},
{
title: "Ordering",
description: "Quick logistics.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-glitter-decoration-detail_23-2149048303.jpg?_wi=2",
titleImageSrc: "http://img.b2bpic.net/free-photo/nozzles-ratchets_23-2148180526.jpg",
buttonText: "Check",
},
]}
description="Our dedicated services are designed to ensure your projects move forward without delays."
/>
</div>
@@ -121,36 +63,20 @@ export default function LandingPage() {
logoText="Dothan Pipe & Supply"
columns={[
{
title: "Navigation",
items: [
{
label: "Products",
href: "/products",
},
{
label: "Services",
href: "/services",
},
{
label: "About",
href: "/about",
},
],
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "About", href: "/about" }
]
},
{
title: "Contact",
items: [
{
label: "Call Us",
href: "tel:3345550199",
},
{
label: "Visit Us",
href: "/contact",
},
],
},
]}
title: "Contact", items: [
{ label: "Call Us", href: "tel:3345550199" },
{ label: "Visit Us", href: "/contact" }
]
}
]
}
/>
</div>
</ReactLenis>