From a2399c51ffa5092810d11d70d46ebae752bcbd1e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 26 Apr 2026 00:56:38 +0000 Subject: [PATCH] Update src/app/services/page.tsx --- src/app/services/page.tsx | 139 +++----------------------------------- 1 file changed, 10 insertions(+), 129 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index cc67c78..e8af030 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -7,7 +7,7 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -export default function LandingPage() { +export default function ServicesPage() { return ( @@ -60,54 +36,10 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - title: "Commercial Roofing", - description: "High-performance systems designed for scale.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-men-working-together_23-2149343659.jpg?_wi=2", - }, - phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/sideways-man-working-roof-with-drill_23-2148748771.jpg", - }, - imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-new-cars-parking-port-automobile-factory_335224-734.jpg?_wi=3", - imageAlt: "commercial roofing texture", - }, - { - title: "Roof Repair", - description: "Precision maintenance and restoration.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-sitting-roof_23-2149343640.jpg", - }, - phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/streetlight_23-2148098639.jpg", - }, - imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-holding-drill-medium-shot_23-2149366636.jpg?_wi=2", - imageAlt: "commercial roofing texture", - }, - { - title: "Drone Inspections", - description: "Advanced aerial diagnostic technology.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/photo-wall-texture-pattern_58702-14957.jpg?_wi=2", - }, - phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/building-wall_1127-2033.jpg", - }, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-smiling_23-2147985511.jpg", - imageAlt: "commercial roofing texture", - }, - { - title: "Waterproofing", - description: "Engineered protection against the elements.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", - }, - phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-high-rise-buildings-modern-city_1359-877.jpg", - }, - imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-man-showing-approval_23-2148230800.jpg", - imageAlt: "commercial roofing texture", - }, + { title: "Commercial Roofing", description: "High-performance systems designed for scale.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-men-working-together_23-2149343659.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/sideways-man-working-roof-with-drill_23-2148748771.jpg" } }, + { title: "Roof Repair", description: "Precision maintenance and restoration.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-sitting-roof_23-2149343640.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/streetlight_23-2148098639.jpg" } }, + { title: "Drone Inspections", description: "Advanced aerial diagnostic technology.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/photo-wall-texture-pattern_58702-14957.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/building-wall_1127-2033.jpg" } }, + { title: "Waterproofing", description: "Engineered protection against the elements.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/detail-shot-high-rise-buildings-modern-city_1359-877.jpg" } } ]} showStepNumbers={false} title="Elite Roofing Solutions" @@ -123,24 +55,8 @@ export default function LandingPage() { title="Service Standards" description="High performance benchmarking." metrics={[ - { - id: "sm1", - value: "100%", - title: "Safety Record", - items: [ - "OSHA certified", - "Risk mitigation", - ], - }, - { - id: "sm2", - value: "24h", - title: "Support Response", - items: [ - "Direct contact", - "Fast resolution", - ], - }, + { id: "sm1", value: "100%", title: "Safety Record", items: ["OSHA certified", "Risk mitigation"] }, + { id: "sm2", value: "24h", title: "Support Response", items: ["Direct contact", "Fast resolution"] } ]} /> @@ -148,42 +64,7 @@ export default function LandingPage() {