Update src/app/services/page.tsx

This commit is contained in:
2026-04-07 18:29:32 +00:00
parent f651813c59
commit aff00edd19

View File

@@ -7,7 +7,7 @@ import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Davis Roofing"
button={{ text: "Contact", href: "/contact" }}
/>
</div>
@@ -52,52 +41,13 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Roof Replacement & Installation",
description: "High-quality installation for all roof types, ensuring durability and style.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg?_wi=3",
imageAlt: "Roofing",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg?_wi=4",
imageAlt: "Roofing",
},
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-with-helmet-working-roof_23-2149343661.jpg?_wi=3",
imageAlt: "luxury roof installation modern home",
},
{
title: "Repair & Inspection",
description: "Comprehensive roof inspections and fast, reliable repairs to protect your home.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg?_wi=5",
imageAlt: "Repair",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg?_wi=6",
imageAlt: "Repair",
},
imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg?_wi=7",
imageAlt: "roofing shingles texture detail",
},
{
title: "Exterior Property Care",
description: "From gutters and siding to pressure washing and junk removal, we handle it all.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg?_wi=8",
imageAlt: "Exterior",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg?_wi=9",
imageAlt: "Exterior",
},
imageSrc: "http://img.b2bpic.net/free-photo/man-working-roof-with-drill-low-view_23-2148748772.jpg?_wi=2",
imageAlt: "professional roofing crew outdoor",
},
{ title: "Roof Replacement", description: "High-quality installation", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg" } },
{ title: "Inspection", description: "Detailed checkup", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg" } },
{ title: "Exterior", description: "Full property care", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg" } }
]}
showStepNumbers={false}
title="Our Services"
description="Expert solutions for your entire property exterior."
description="Expert solutions."
/>
</div>
@@ -108,18 +58,10 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Additional Services"
description="Beyond just roofs, we provide complete property solutions."
description="Beyond just roofs."
features={[
{
title: "Siding Installation",
description: "Premium vinyl and wood siding options.",
imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg?_wi=10",
},
{
title: "Gutter Maintenance",
description: "Cleaning and custom seamless gutter installs.",
imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg?_wi=11",
},
{ title: "Siding Installation", description: "Premium vinyl and wood.", media: { imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg" } },
{ title: "Gutter Maintenance", description: "Cleaning and custom.", media: { imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15895.jpg" } }
]}
/>
</div>
@@ -128,36 +70,8 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="Davis Roofing & Contracting"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms & Conditions",
href: "#",
},
],
},
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }] }
]}
copyrightText="© 2024 Davis Roofing & Contracting. All Rights Reserved."
/>