From ed17b93459fa160bbe5628ab6e7fef047b95ff44 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 18:21:46 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7a3bf9d..2ac8f64 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -15,7 +15,7 @@ export default function AboutPage() { borderRadius="rounded" contentWidth="mediumLarge" sizing="mediumLarge" - background="noise" + background="circleGradient" cardStyle="inset" primaryButtonStyle="primary-glow" secondaryButtonStyle="solid" @@ -47,7 +47,7 @@ export default function AboutPage() { { value: "20+", title: "Years of Combined Experience" }, { value: "500+", title: "Satisfied Homeowners Served" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/couple-collects-leaves-cleans-park_1157-27418.jpg" imageAlt="Monjas YSK landscaping team" mediaAnimation="slide-up" metricsAnimation="slide-up" @@ -62,7 +62,7 @@ export default function AboutPage() { Date: Mon, 2 Mar 2026 18:21:47 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index faa9c92..97d242b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -15,7 +15,7 @@ export default function ContactPage() { borderRadius="rounded" contentWidth="mediumLarge" sizing="mediumLarge" - background="noise" + background="circleGradient" cardStyle="inset" primaryButtonStyle="primary-glow" secondaryButtonStyle="solid" @@ -41,7 +41,7 @@ export default function ContactPage() { Date: Mon, 2 Mar 2026 18:21:48 +0000 Subject: [PATCH 3/6] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 34 +++++++++++----------------------- 1 file changed, 11 insertions(+), 23 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index ecfa862..e423eb3 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -15,7 +15,7 @@ export default function GalleryPage() { borderRadius="rounded" contentWidth="mediumLarge" sizing="mediumLarge" - background="noise" + background="circleGradient" cardStyle="inset" primaryButtonStyle="primary-glow" secondaryButtonStyle="solid" @@ -41,31 +41,19 @@ export default function GalleryPage() { Date: Mon, 2 Mar 2026 18:21:48 +0000 Subject: [PATCH 4/6] Update src/app/layout.tsx --- src/app/layout.tsx | 26 ++++++-------------------- 1 file changed, 6 insertions(+), 20 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6380d6d..0281d68 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,37 +3,23 @@ import { Mulish } from "next/font/google"; import "./globals.css"; const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], + variable: "--font-mulish", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Monjas YSK Landscaping | Professional Services in Reno, NV", - description: "Expert landscaping, artificial turf, irrigation, and hardscape services in Reno & Carson City. 4.5★ rated. Free estimates. Licensed & insured.", - keywords: "landscaping Reno, artificial turf Nevada, irrigation services, hardscape contractor, landscape design, Carson City", - robots: { + title: "Monjas YSK Landscaping | Professional Services in Reno, NV", description: "Expert landscaping, artificial turf, irrigation, and hardscape services in Reno & Carson City. 4.5★ rated. Free estimates. Licensed & insured.", keywords: "landscaping Reno, artificial turf Nevada, irrigation services, hardscape contractor, landscape design, Carson City", robots: { index: true, follow: true, }, openGraph: { - title: "Monjas YSK Landscaping | Professional Services in Reno, NV", - description: "Expert landscaping, artificial turf, irrigation, and hardscape services in Reno & Carson City. 4.5★ rated.", - type: "website", - siteName: "Monjas YSK Landscaping", - images: [ + title: "Monjas YSK Landscaping | Professional Services in Reno, NV", description: "Expert landscaping, artificial turf, irrigation, and hardscape services in Reno & Carson City. 4.5★ rated.", type: "website", siteName: "Monjas YSK Landscaping", images: [ { - url: "http://img.b2bpic.net/free-photo/pensive-middle-aged-gardener-holding-small-thuja-pot-bearded-garden-worker-glasses-wearing-blue-shirt-apron-growing-evergreen-plants-greenhouse-commercial-gardening-summer-concept_74855-12936.jpg", - alt: "Professional landscaping services", - }, + url: "http://img.b2bpic.net/free-photo/pensive-middle-aged-gardener-holding-small-thuja-pot-bearded-garden-worker-glasses-wearing-blue-shirt-apron-growing-evergreen-plants-greenhouse-commercial-gardening-summer-concept_74855-12936.jpg", alt: "Professional landscaping services"}, ], }, twitter: { - card: "summary_large_image", - title: "Monjas YSK Landscaping | Professional Services in Reno, NV", - description: "Expert landscaping, artificial turf, irrigation, and hardscape services in Reno & Carson City.", - images: [ - "http://img.b2bpic.net/free-photo/pensive-middle-aged-gardener-holding-small-thuja-pot-bearded-garden-worker-glasses-wearing-blue-shirt-apron-growing-evergreen-plants-greenhouse-commercial-gardening-summer-concept_74855-12936.jpg", - ], + card: "summary_large_image", title: "Monjas YSK Landscaping | Professional Services in Reno, NV", description: "Expert landscaping, artificial turf, irrigation, and hardscape services in Reno & Carson City.", images: [ + "http://img.b2bpic.net/free-photo/pensive-middle-aged-gardener-holding-small-thuja-pot-bearded-garden-worker-glasses-wearing-blue-shirt-apron-growing-evergreen-plants-greenhouse-commercial-gardening-summer-concept_74855-12936.jpg"], }, }; -- 2.49.1 From 035e121a8a68b80f6ff89f243a76d472e92f2dbc Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 18:21:49 +0000 Subject: [PATCH 5/6] Update src/app/page.tsx --- src/app/page.tsx | 155 +++++++++++++---------------------------------- 1 file changed, 41 insertions(+), 114 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 33e6a8e..681244e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function HomePage() { borderRadius="rounded" contentWidth="mediumLarge" sizing="mediumLarge" - background="noise" + background="circleGradient" cardStyle="inset" primaryButtonStyle="primary-glow" secondaryButtonStyle="solid" @@ -47,26 +47,18 @@ export default function HomePage() { tagIcon={Sparkles} title="Transform Your Reno Yard Into An Outdoor Oasis" description="Artificial turf, irrigation systems, hardscaping, and complete landscape renovations serving Reno & Carson City with professional craftsmanship and fair pricing." - background={{ variant: "noise" }} + background={{ variant: "glowing-orb" }} leftCarouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/high-view-shot-woman-holding-chinese-food_23-2148242620.jpg", - imageAlt: "Artificial turf installation", - }, + imageSrc: "http://img.b2bpic.net/free-photo/high-view-shot-woman-holding-chinese-food_23-2148242620.jpg", imageAlt: "Artificial turf installation"}, { - imageSrc: "http://img.b2bpic.net/free-photo/soft-focus-vintage-bicycle_1339-1871.jpg", - imageAlt: "Irrigation system", - }, + imageSrc: "http://img.b2bpic.net/free-photo/soft-focus-vintage-bicycle_1339-1871.jpg", imageAlt: "Irrigation system"}, ]} rightCarouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-material-pieces-wooden-boxes_181624-18062.jpg", - imageAlt: "Retaining wall hardscape", - }, + imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-material-pieces-wooden-boxes_181624-18062.jpg", imageAlt: "Retaining wall hardscape"}, { - imageSrc: "http://img.b2bpic.net/free-photo/terrace-with-trees-forest-cozy-outdoor-relaxation-space_169016-69565.jpg?_wi=1", - imageAlt: "Landscape patio design", - }, + imageSrc: "http://img.b2bpic.net/free-photo/terrace-with-trees-forest-cozy-outdoor-relaxation-space_169016-69565.jpg", imageAlt: "Landscape patio design"}, ]} buttons={[ { text: "Call Now", href: "tel:+17755551234" }, @@ -87,23 +79,14 @@ export default function HomePage() { tagAnimation="slide-up" metrics={[ { - id: "1", - value: "4.5★", - description: - "58 verified reviews on Yelp from satisfied customers in Reno and Carson City", - }, + id: "1", value: "4.5★", description: + "58 verified reviews on Yelp from satisfied customers in Reno and Carson City"}, { - id: "2", - value: "20+", - description: - "Years of combined professional landscaping and outdoor construction experience", - }, + id: "2", value: "20+", description: + "Years of combined professional landscaping and outdoor construction experience"}, { - id: "3", - value: "100%", - description: - "On-time service with transparent pricing and professional crew members", - }, + id: "3", value: "100%", description: + "On-time service with transparent pricing and professional crew members"}, ]} metricsAnimation="slide-up" useInvertedBackground={false} @@ -116,49 +99,29 @@ export default function HomePage() { Date: Mon, 2 Mar 2026 18:21:50 +0000 Subject: [PATCH 6/6] Update src/app/services/page.tsx --- src/app/services/page.tsx | 34 +++++++++++----------------------- 1 file changed, 11 insertions(+), 23 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 70d5850..a304c8b 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -15,7 +15,7 @@ export default function ServicesPage() { borderRadius="rounded" contentWidth="mediumLarge" sizing="mediumLarge" - background="noise" + background="circleGradient" cardStyle="inset" primaryButtonStyle="primary-glow" secondaryButtonStyle="solid" @@ -41,31 +41,19 @@ export default function ServicesPage() {