From 5a2be87c280bff084feba117eb8a93163c2dc966 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 21:45:54 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 377 +++-------------------------------------------- 1 file changed, 23 insertions(+), 354 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5d20d80..d423195 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,26 +30,11 @@ export default function LandingPage() {
@@ -225,62 +80,8 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" useInvertedBackground={true} - testimonials={[ - { - id: "1", - name: "Sarah J.", - role: "Homeowner", - company: "Bronx", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/excellent-idea-nice-job-portrait-supportive-delighted-happy-charming-female-friend-showing-th_1258-143019.jpg", - }, - { - id: "2", - name: "Michael C.", - role: "Homeowner", - company: "Queens", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-carrying-woman-with-wheelbarrow_23-2149382171.jpg?_wi=2", - }, - { - id: "3", - name: "Elena R.", - role: "Homeowner", - company: "Brooklyn", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/never-ending-happiness-our-new-home_329181-9763.jpg", - }, - { - id: "4", - name: "David K.", - role: "Homeowner", - company: "Manhattan", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/elegant-house-exterior-with-front-porch-landscaping_23-2151974392.jpg", - }, - { - id: "5", - name: "Anna P.", - role: "Homeowner", - company: "Yonkers", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiley-couple-making-plans-remodel-home-together_23-2148814635.jpg", - }, - ]} - kpiItems={[ - { - value: "4.9", - label: "Google Rating", - }, - { - value: "9", - label: "Verified Reviews", - }, - { - value: "100%", - label: "Service Commitment", - }, - ]} + testimonials={[]} + kpiItems={[{ value: "4.9", label: "Google Rating" }, { value: "9", label: "Verified Reviews" }, { value: "100%", label: "Service Commitment" }]} title="Trusted by Local Homeowners" description="With a 4.9 star rating across 9 Google reviews, we pride ourselves on transparency and quality." /> @@ -292,50 +93,7 @@ export default function LandingPage() { textboxLayout="default" gridVariant="two-columns-alternating-heights" useInvertedBackground={false} - products={[ - { - id: "1", - name: "Concrete Driveways", - price: "View Project", - variant: "Driveways", - imageSrc: "http://img.b2bpic.net/free-photo/builder-with-construction-tools-construction-site-looking-blueprint_169016-5269.jpg", - }, - { - id: "2", - name: "Secure Fencing", - price: "View Project", - variant: "Fencing", - imageSrc: "http://img.b2bpic.net/free-photo/exterior-modern-residential-building_637285-1921.jpg", - }, - { - id: "3", - name: "Roofing Repairs", - price: "View Project", - variant: "Roofing", - imageSrc: "http://img.b2bpic.net/free-photo/woman-with-spanner-back-pocket-jeans-overall_23-2148085305.jpg", - }, - { - id: "4", - name: "Masonry Stairs", - price: "View Project", - variant: "Stairs", - imageSrc: "http://img.b2bpic.net/free-photo/old-construction-made-bricks_1137-229.jpg", - }, - { - id: "5", - name: "Brickwork", - price: "View Project", - variant: "Masonry", - imageSrc: "http://img.b2bpic.net/free-photo/man-painting-car-door-side-view_23-2149714298.jpg", - }, - { - id: "6", - name: "Full Renovation", - price: "View Project", - variant: "Renovations", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-mother-with-her-little-daughter-is-cooking-kitchen-home_1157-13735.jpg", - }, - ]} + products={[]} title="Our Recent Work" description="Take a look at some of our completed projects around NYC." /> @@ -345,28 +103,7 @@ export default function LandingPage() { @@ -411,55 +128,7 @@ export default function LandingPage() { -- 2.49.1 From 0028d683014cfbf13638ce746de28217faaa9c3f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 21:45:55 +0000 Subject: [PATCH 2/2] Add src/app/services/page.tsx --- src/app/services/page.tsx | 60 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/app/services/page.tsx diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..b5dc0cc --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,60 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; + +export default function ServicesPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1